$(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
	$(".item1").mouseover(function(){
		$(this).stop().animate({height:'218px'},{queue:false, duration:300, easing: 'easeOutQuad'})

	});
	
	//When mouse is removed
	$(".item1").mouseout(function(){
		$(this).stop().animate({height:'122px'},{queue:false, duration:300, easing: 'easeOutQuad'})


	});
	//When mouse rolls over
	$(".item2").mouseover(function(){
		$(this).stop().animate({height:'218px'},{queue:false, duration:300, easing: 'easeOutQuad'})

	});
	
	//When mouse is removed
	$(".item2").mouseout(function(){
		$(this).stop().animate({height:'122px'},{queue:false, duration:300, easing: 'easeOutQuad'})


	});
	//When mouse rolls over
	$(".item3").mouseover(function(){
		$(this).stop().animate({height:'218px'},{queue:false, duration:300, easing: 'easeOutQuad'})

	});
	
	//When mouse is removed
	$(".item3").mouseout(function(){
		$(this).stop().animate({height:'122px'},{queue:false, duration:300, easing: 'easeOutQuad'})


	});
	
});
