$(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
	$("#animation").mouseover(function(){
		$(this).stop().animate({height:'260px'},{queue:false, duration:300, easing: 'easeInOutCubic'})
		$( this ).css( "z-index","=100" );

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

