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