$(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
	$("li.menu").mouseover(
		function(){
			$(this).stop().animate({top:'-32px',height:'75px'},{queue:false, duration:300, easing: 'easeOutBounce'});
			$(".active a").stop().animate({height:'75px'},{queue:false, duration:300, easing: 'easeOutBounce'});
			$(".inactive a").stop().animate({height:'75px'},{queue:false, duration:300, easing: 'easeOutBounce'});
		}
	);//
	
	//When mouse is removed
	$("li.menu").mouseout(function(){
		$(this).stop().animate({top:'0px',height:'43px'},{queue:false, duration:300, easing: 'easeOutBounce'});
		$(".active a").stop().animate({height:'43px'},{queue:false, duration:300, easing: 'easeOutBounce'});
		$(".inactive a").stop().animate({height:'43px'},{queue:false, duration:300, easing: 'easeOutBounce'});
	});
	
});