$(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	//Remove outline from links
	
	
	//When mouse rolls over
	$(".mainNav").mouseover(function(){
		$(this).stop().animate({height:'440px'},{queue:false, duration:600, easing: 'easeOutCubic'})
	});
	
	//When mouse is removed
	$(".mainNav").mouseout(function(){
		$(this).stop().animate({height:'64px'},{queue:false, duration:600, easing: 'easeOutCubic'})
	});
	
});