/**
 * @author ph
 */
$(document).ready(function() {
	
	$("#homeImages a").mouseover(function() {
		$(this).parent().find("span").fadeIn('200');
	}).mouseout(function() {
		$(this).parent().find("span").fadeOut('200');
	});
	
});
