$(document).ready(function() {
	$('.animate_back')
		.hover(function() { 
			$(this).stop(true, true).animate({ opacity: 0 },'fast');
		}, function() { 
			$(this).stop(true, false).animate({ opacity: 1 }, 'normal');
		});	
});

