

// JavaScript Document

$(document).ready(function(){  
  
    //When mouse rolls over  
    $("li.dropdown").mouseover(function(){  
        $(this).stop().animate({height:'210px'},{queue:false, duration:400, easing: 'easeOutBounce'})  
    });  
  
    //When mouse is removed  
    $("li.dropdown").mouseout(function(){  
        $(this).stop().animate({height:'23px'},{queue:false, duration:400, easing: 'easeOutBounce'})  
    });  
  
});  



