$(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
	$(".green").mouseover(function(){
		$(this).stop().animate({height:'295px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$(".green").mouseout(function(){
		$(this).stop().animate({height:'86px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse rolls over
	$(".green1").mouseover(function(){
		$(this).stop().animate({height:'270px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$(".green1").mouseout(function(){
		$(this).stop().animate({height:'86px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
		//When mouse rolls over
	$(".green2").mouseover(function(){
		$(this).stop().animate({height:'245px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$(".green2").mouseout(function(){
		$(this).stop().animate({height:'86px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
		//When mouse rolls over
	$(".green3").mouseover(function(){
		$(this).stop().animate({height:'395px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$(".green3").mouseout(function(){
		$(this).stop().animate({height:'86px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
		//When mouse rolls over
	$(".green4").mouseover(function(){
		$(this).stop().animate({height:'220px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$(".green4").mouseout(function(){
		$(this).stop().animate({height:'86px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
		//When mouse rolls over
	$(".green5").mouseover(function(){
		$(this).stop().animate({height:'195px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$(".green5").mouseout(function(){
		$(this).stop().animate({height:'86px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
});


