$(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
	$(".dropdown").mouseover(function(){
		$(this).find(".dropmenu").stop().animate({height:'40px'},{queue:false, duration:400, easing: 'easeOutQuint'})
	});
	
	//When mouse is removed
	$(".dropdown").mouseout(function(){
		$(this).find(".dropmenu").stop().animate({height:'0px'},{queue:false, duration:400, easing: 'easeOutQuint'})
	});
	
});
