var $j = jQuery.noConflict();


$j(document).ready(function(){
						   
	

	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	//Remove outline from links
	$j("a").click(function(){
		$j(this).blur();
	});
	
	
	//When mouse rolls over
	$j(".blue").mouseover(function(){
		$j(this).stop().animate({height:'283px'},{queue:false, duration:400, easing: 'easeOutQuart'})
	});
	
	//When mouse is removed
	$j(".blue").mouseout(function(){
		$j(this).stop().animate({height:'273px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	
		
	$j(".red").mouseover(function(){
		$j(this).stop().animate({height:'283px'},{queue:false, duration:400, easing: 'easeOutQuart'})
	});
	
	//When mouse is removed
	$j(".red").mouseout(function(){
		$j(this).stop().animate({height:'273px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	
	$j(".yellow").mouseover(function(){
		$j(this).stop().animate({height:'283px'},{queue:false, duration:400, easing: 'easeOutQuart'})
	});
	
	//When mouse is removed
	$j(".yellow").mouseout(function(){
		$j(this).stop().animate({height:'273px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	$j(".green").mouseover(function(){
		$j(this).stop().animate({height:'283px'},{queue:false, duration:400, easing: 'easeOutQuart'})
	});
	
	//When mouse is removed
	$j(".green").mouseout(function(){
		$j(this).stop().animate({height:'273px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
});
