$(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();
	});
	
//1
	$("#1").mouseover(function(){
		$(this).stop().animate({height:'80%'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});
	
	$("#1").mouseout(function(){
		$(this).stop().animate({height:'69%'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});
	
	
//2
	$("#2").mouseover(function(){
		$(this).stop().animate({height:'110%'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});
	
	$("#2").mouseout(function(){
		$(this).stop().animate({height:'100%'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});
	
	
//3
	$("#3").mouseover(function(){
		$(this).stop().animate({height:'100%'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});
	
	$("#3").mouseout(function(){
		$(this).stop().animate({height:'90%'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});
	
	
//4
	$("#4").mouseover(function(){
		$(this).stop().animate({height:'86%'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});
	
	$("#4").mouseout(function(){
		$(this).stop().animate({height:'77%'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});
	
	
//5
	$("#5").mouseover(function(){
		$(this).stop().animate({height:'96%'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});
	
	$("#5").mouseout(function(){
		$(this).stop().animate({height:'86%'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});
	
	
//6
	$("#6").mouseover(function(){
		$(this).stop().animate({height:'80%'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});
	
	$("#6").mouseout(function(){
		$(this).stop().animate({height:'70%'},{queue:false, duration:400, easing: 'easeOutBounce'})
	});
	
	
	
	
	
//menu
	$("#menu").mouseover(function(){	
		$("#cont_menu").stop().animate({top:'0%'},{queue:false, duration:1000, easing: 'easeOutBounce'})
	});
	
	$("#menu").mouseout(function(){
		$("#cont_menu").stop().animate({top:'50%'},{queue:false, duration:1000, easing: 'easeOutBounce'})
	});
	
	
});
