// JavaScript Document

   $(document).ready(function(){  
     
       //When mouse rolls over  
       $("div#menu>ul>li").mouseover(function(){  
           $(this).find("p").stop().animate({height:'78px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
       });  
     
       //When mouse is removed  
       $("div#menu>ul>li").mouseout(function(){  
           $(this).find("p").stop().animate({height:'0px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
       });  
     
   });  

