$(document).ready(function(){

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

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

});$(document).ready(function(){

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

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

});
