$(document).ready(function () {

    //Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/

    //Remove outline from links
    $("#menu a").click(function () {
        $(this).blur();
    });

    //When mouse rolls over
    $("#menu li").mouseover(function () {
        $(this).stop().animate({ height: '55px' }, { queue: false, duration: 400, easing: 'easeOutBounce' })
    });

    //When mouse is removed
    $("#menu li").mouseout(function () {
        $(this).stop().animate({ height: '36px' }, { queue: false, duration: 400, easing: 'easeOutBounce' })
    });

});
