$(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.dropdown").mouseover(function(){
		$(this).stop().animate({height:'186px'},{queue:false, duration:350, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$("li.dropdown").mouseout(function(){
		$(this).stop().animate({height:'31px'},{queue:false, duration:350, easing: 'easeOutBounce'})
	});
	
});