$(document).ready(function(){  
   
     //When mouse rolls over  
     $("#menu ul li").mouseover(function(){  
        $(this).stop().animate({height:'75px', top:'35px', bottom:'0px'},{queue:false, duration:350, easing: 'easeOutBounce'})
	});

  
     //When mouse is removed  
     $("#menu ul li").mouseout(function(){  
        $(this).stop().animate({height:'42px', top:'40px'},{queue:false, duration:350, easing: 'easeOutBounce'})   
   });
   
 });
