
$(document).ready(function(){

	//Remove outline from links
	$("#navigation a").click(function(){
		$(this).blur();
	});
	
    //When mouse rolls over
    $("#navigation li").mouseover(function(){
        $(this).stop().animate({height:'228px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });
    

    //When mouse is removed
    $("#navigation li").mouseout(function(){
        $(this).stop().animate({height:'38px'},{queue:false, duration:900, easing: 'easeOutBounce'})
    });

});