$(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
	$(window).load(function(){
		$("#dropMenu").stop().animate({height:'100px'},{queue:false, duration:600, easing: 'easeOutBounce'})
		});
		
		$(window).load(function(){
		$("#droplunch").stop().animate({height:'600px'},{queue:false, duration:600, easing: 'easeOutBounce'})
		});
		$(window).load(function(){
		$("#droplunch1").stop().animate({height:'950px'},{queue:false, duration:600, easing: 'easeOutBounce'})
		});
		$(window).load(function(){
		$("#droplunch2").stop().animate({height:'1200px'},{queue:false, duration:600, easing: 'easeOutBounce'})
		});
		
		$(window).load(function(){
		$("#wine").stop().animate({height:'1500px'},{queue:false, duration:600, easing: 'easeOutBounce'})
		});
		
		
		$(window).load(function(){
		$("#dropDinner").stop().animate({height:'875px'},{queue:false, duration:700, easing: 'easeOutBounce'})
		});
		//var t=setTimeout( " ",2000);
	
	//When mouse is removed 
	/*$("nav").mouseout(function()
		$(this).stop().animate({height:'50px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});*/
	
});
