$(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
	$("#navi li.menu01").mouseover(function(){
		$(this).stop().animate({height:'233px'},{queue:false, duration:600, easing: 'easeOutCubic'})
	});
	$("#navi li.menu02").mouseover(function(){
		$(this).stop().animate({height:'133px'},{queue:false, duration:600, easing: 'easeOutCubic'})
	});
	$("#navi li.menu03").mouseover(function(){
		$(this).stop().animate({height:'158px'},{queue:false, duration:600, easing: 'easeOutCubic'})
	});
	$("#navi li.menu04").mouseover(function(){
		$(this).stop().animate({height:'350px'},{queue:false, duration:600, easing: 'easeOutCubic'})
	});
	$("#navi li.menu05").mouseover(function(){
		$(this).stop().animate({height:'234px'},{queue:false, duration:600, easing: 'easeOutCubic'})
	});
	$("#navi li.menu06").mouseover(function(){
		$(this).stop().animate({height:'133px'},{queue:false, duration:600, easing: 'easeOutCubic'})
	});
	$("#navi li.menu07").mouseover(function(){
		$(this).stop().animate({height:'199px'},{queue:false, duration:600, easing: 'easeOutCubic'})
	});
	
	//When mouse is removed
	$("#navi li.menu01").mouseout(function(){
		$(this).stop().animate({height:'55px'},{queue:false, duration:600, easing: 'easeOutCubic'})
	});
	$("#navi li.menu02").mouseout(function(){
		$(this).stop().animate({height:'55px'},{queue:false, duration:600, easing: 'easeOutCubic'})
	});
	$("#navi li.menu03").mouseout(function(){
		$(this).stop().animate({height:'55px'},{queue:false, duration:600, easing: 'easeOutCubic'})
	});
	$("#navi li.menu04").mouseout(function(){
		$(this).stop().animate({height:'55px'},{queue:false, duration:600, easing: 'easeOutCubic'})
	});
	$("#navi li.menu05").mouseout(function(){
		$(this).stop().animate({height:'55px'},{queue:false, duration:600, easing: 'easeOutCubic'})
	});
	$("#navi li.menu06").mouseout(function(){
		$(this).stop().animate({height:'55px'},{queue:false, duration:600, easing: 'easeOutCubic'})
	});
	$("#navi li.menu07").mouseout(function(){
		$(this).stop().animate({height:'55px'},{queue:false, duration:600, easing: 'easeOutCubic'})
	});
});
