$(document).ready(function(){
 $('#contact a').hover(function(){
  $('#top-level').addClass("contact");
 },
 function(){
  $('#top-level').removeClass("contact");
 });
 
  $('#about-us a').hover(function(){
  $('#top-level').addClass("about-us");
 },
 function(){
  $('#top-level').removeClass("about-us");
 });
 
  $('#physicians a').hover(function(){
  $('#top-level').addClass("physicians");
 },
 function(){
  $('#top-level').removeClass("physicians");
 });

  $('#locations a').hover(function(){
  $('#top-level').addClass("locations");
 },
 function(){
  $('#top-level').removeClass("locations");
 });
 
  $('#info-center a').hover(function(){
  $('#top-level').addClass("info-center");
 },
 function(){
  $('#top-level').removeClass("info-center");
 });
 
  $('#privacy a').hover(function(){
  $('#top-level').addClass("privacy");
 },
 function(){
  $('#top-level').removeClass("privacy");
 });


  $('#physicians').hover(function(){
  $('#about-us ul').hide(0);
 },
 function(){
  $('#about-us ul').show(0);
 }); 
 
   $('#locations').hover(function(){
  $('#about-us ul').hide(0);
 },
 function(){
  $('#about-us ul').show(0);
 }); 
 
  $('#info-center').hover(function(){
  $('#about-us ul').hide(0);
 },
 function(){
  $('#about-us ul').show(0);
 }); 
 
   $('#privacy').hover(function(){
  $('#about-us ul').hide(0);
 },
 function(){
  $('#about-us ul').show(0);
 }); 
 
   $('#contact').hover(function(){
  $('#about-us ul').hide(0);
 },
 function(){
  $('#about-us ul').show(0);
 }); 



  $('#about-us').hover(function(){
  $('#physicians ul').hide(0);
 },
 function(){
  $('#physicians ul').show(0);
 }); 
 
  $('#contact').hover(function(){
  $('#physicians ul').hide(0);
 },
 function(){
  $('#physicians ul').show(0);
 });  
 
   $('#locations').hover(function(){
  $('#physicians ul').hide(0);
 },
 function(){
  $('#physicians ul').show(0);
 });  
 
   $('#info-center').hover(function(){
  $('#physicians ul').hide(0);
 },
 function(){
  $('#physicians ul').show(0);
 });  

  $('#privacy').hover(function(){
  $('#physicians ul').hide(0);
 },
 function(){
  $('#physicians ul').show(0);
 });  

  $('#about-us').hover(function(){
  $('#contact ul').hide(0);
 },
 function(){
  $('#contact ul').show(0);
 }); 

  $('#physicians').hover(function(){
  $('#contact ul').hide(0);
 },
 function(){
  $('#contact ul').show(0);
 }); 

  $('#locations').hover(function(){
  $('#contact ul').hide(0);
 },
 function(){
  $('#contact ul').show(0);
 }); 

  $('#info-center').hover(function(){
  $('#contact ul').hide(0);
 },
 function(){
  $('#contact ul').show(0);
 }); 

  $('#privacy').hover(function(){
  $('#contact ul').hide(0);
 },
 function(){
  $('#contact ul').show(0);
 }); 


 $('#cancer-screening').hover(function(){
  $('#cancer-research').addClass("cancer-on");
 },
 function(){
  $('#cancer-research').removeClass("cancer-on");
 });
 
 $('#research').hover(function(){
  $('#cancer-research').addClass("research-on");
 },
 function(){
  $('#cancer-research').removeClass("research-on");
 });



});