$(function(){
	$(".photo-list a").hover(function(){
		$(this).children("span").fadeOut();
	}, function(){
		$(this).children("span").fadeIn();
	})		
});

