$(document).ready(function(){  
  
    //When mouse rolls over  
    $("#nav li").mouseover(function(){  
        $(this).stop().animate({height:'140px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
    });  
  
    //When mouse is removed  
    $("#nav li").mouseout(function(){  
        $(this).stop().animate({height:'20px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
    });  
  
}); 
