$(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
	$(".mmhide_nav").mouseover(function(){
		$(this).stop().animate({height:'110px'},{queue:false, duration:200, easing: 'easeInQuad'})
	});
	
	//When mouse is removed
	$(".mmhide_nav").mouseout(function(){
		$(this).stop().animate({height:'24px'},{queue:false, duration:200, easing: 'easeOutQuad'})
	});
	
});
