$(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
	$("#box1, #box2, #box3").mouseover(function(){
		$(this).stop().animate({height:'134px'},{queue:false, duration:600, easing: 'easeInOutCubic'})
	});
	
	//When mouse is removed
	$("#box1, #box2, #box3").mouseout(function(){
		$(this).stop().animate({height:'60px'},{queue:false, duration:600, easing: 'easeInOutCubic'})
	});
	
});
