$(document).ready(function(){

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

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

});
