$(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 and out of aboutUsOut
	$("li.aboutUsOut").mouseover(function(){		$("li.aboutUsOver").stop().animate({height:'393px'},	{queue:false, duration:600, easing: 'easeOutBounce'}) 	});
	$("li.aboutUsOut").mouseout(function(){			$("li.aboutUsOver").stop().animate({height:'50px'},		{queue:false, duration:600, easing: 'easeInOutCubic'})	});
	
	//When mouse rolls over and out of promoOut
	$("li.promoOut").mouseover(function(){			$("li.promoOver").stop().animate({height:'393px'},	{queue:false, duration:600, easing: 'easeOutBounce'}) 	});
	$("li.promoOut").mouseout(function(){				$("li.promoOver").stop().animate({height:'50px'},		{queue:false, duration:600, easing: 'easeInOutCubic'})	});
	
	//When mouse rolls over and out of professOut
	$("li.professOut").mouseover(function(){		$("li.professOver").stop().animate({height:'393px'},	{queue:false, duration:600, easing: 'easeOutBounce'}) 	});
	$("li.professOut").mouseout(function(){			$("li.professOver").stop().animate({height:'50px'},		{queue:false, duration:600, easing: 'easeInOutCubic'})	});
	
	//When mouse rolls over and out of regulationOut
	$("li.regulationOut").mouseover(function(){	$("li.regulationOver").stop().animate({height:'393px'},	{queue:false, duration:600, easing: 'easeOutBounce'}) 	});
	$("li.regulationOut").mouseout(function(){	$("li.regulationOver").stop().animate({height:'50px'},		{queue:false, duration:600, easing: 'easeInOutCubic'})	});
	
	//When mouse rolls over and out of flibsOut
	$("li.flibsOut").mouseover(function(){			$("li.flibsOver").stop().animate({height:'393px'},	{queue:false, duration:600, easing: 'easeOutBounce'}) 	});
	$("li.flibsOut").mouseout(function(){				$("li.flibsOver").stop().animate({height:'50px'},		{queue:false, duration:600, easing: 'easeInOutCubic'})	});
});
