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