$(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
	$(".innernav li").mouseover(function(){
		$(this).stop().animate({height:'325px'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});

	//When mouse rolls over
	$(".innernav #red").mouseover(function(){
		$(this).stop().animate({height:'240px'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});
	
	//When mouse rolls over
	$(".innernav #green").mouseover(function(){
		$(this).stop().animate({height:'210px'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});	

	//When mouse rolls over
	$(".innernav #blue").mouseover(function(){
		$(this).stop().animate({height:'260px'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});
	//When mouse rolls over
	$(".innernav #orange").mouseover(function(){
		$(this).stop().animate({height:'225px'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});
	//When mouse rolls over
	$(".innernav #purple").mouseover(function(){
		$(this).stop().animate({height:'320px'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$(".innernav li").mouseout(function(){
		$(this).stop().animate({height:'50px'},{queue:false, duration:500, easing: 'easeOutBounce'})
	});
	
});
