$(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	//Remove outline from links
	$("#nav a").click(function(){
		$(this).blur();
	});
	
	//When mouse rolls over
	$("#nav li").mouseover(function(){
		$(this).stop().animate({height:'75px'},{queue:false, duration:600, easing: 'easeOutExpo'})
	});
	$("#nav .experience").mouseover(function(){
		$(this).stop().animate({height:'270px'},{queue:false, duration:600, easing: 'easeOutExpo'})
	});
	$("#nav .tickets").mouseover(function(){
		$(this).stop().animate({height:'160px'},{queue:false, duration:600, easing: 'easeOutExpo'})
	});
	$("#nav .info").mouseover(function(){
		$(this).stop().animate({height:'220px'},{queue:false, duration:600, easing: 'easeOutExpo'})
	});
	$("#nav .vault").mouseover(function(){
		$(this).stop().animate({height:'235px'},{queue:false, duration:600, easing: 'easeOutExpo'})
	});
	$("#nav .gear").mouseover(function(){
		$(this).stop().animate({height:'39px'},{queue:false, duration:600, easing: 'easeOutExpo'})
	});
	$("#nav .social").mouseover(function(){
		$(this).stop().animate({height:'120px'},{queue:false, duration:600, easing: 'easeOutExpo'})
	});
	$("#nav .player").mouseover(function(){
		$(this).stop().animate({height:'39px'},{queue:false, duration:600, easing: 'easeOutExpo'})
	});
	
	//When mouse is removed
	$("#nav li").mouseout(function(){
		$(this).stop().animate({height:'39px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
});
