// JavaScript Document
//http://buildinternet.com/2009/01/how-to-make-a-smooth-animated-menu-with-jquery/

(function($){

$(document).ready(function(){

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

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

});

})(jQuery);

