jQuery(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	//Remove outline from links
	jQuery("a").click(function(){
		jQuery(this).blur();
	});
	
	//When mouse rolls over
	jQuery("#rates").mouseover(function(){
		jQuery(this).stop().animate({height:'125px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});

	jQuery("#photo").mouseover(function(){
		jQuery(this).stop().animate({height:'80px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});

	//When mouse is removed
	jQuery("#rates").mouseout(function(){
		jQuery(this).stop().animate({height:'20px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});

	jQuery("#photo").mouseout(function(){
		jQuery(this).stop().animate({height:'20px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});

});