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