$(document).ready(function() {
  $("#menuitem2").hover(function() {
     $("#menuitem2 ul").animate({ top: -150 }, 500);
   }, 
   function() {
     $("#menuitem2 ul").animate({ top: 0 }, 300);
   }
   );
   
   $("#menuitem3").hover(function() {
     $("#menuitem3 ul").animate({ top: -69 }, 500);
   }, 
   function() {
     $("#menuitem3 ul").animate({ top: 0 }, 300);
   }
   );
   
   $("#menuitem4").hover(function() {
     $("#menuitem4 ul").animate({ top: -150 }, 500);
   }, 
   function() {
     $("#menuitem4 ul").animate({ top: 0 }, 300);
   }
   );

   $("#menuitem5").hover(function() {
     $("#menuitem5 ul").animate({ top: -72 }, 500);
   },
   function() {
     $("#menuitem5 ul").animate({ top: 0 }, 300);
   }
   );
   
   $('#telnum').animate({ marginLeft: 0 },
     {duration: 2000,
     specialEasing: { marginLeft: 'easeOutBounce'}
     });


 });
