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