
$(document).ready(function() {
	
	$('#Content .EzBlock.Gallery .Image a').hover(function() {
		$(this).find('span').stop(true, true).fadeIn(150);
	}, function() {
		$(this).find('span').stop(true, true).fadeOut(700);
	});
	
});

