$(document).ready(function(){

    //When mouse rolls over
    $("#menu li").mouseover(function(){
        $(this).stop().animate({height:'126px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });

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

});
