$(document).ready(function() {
	$(".block").hover(
	function() {
		$(this).children("img").stop(true, true).hide();
		$(this).children(".textContents").fadeIn(750);
	},
	function() {
		$(this).children(".textContents").stop(true, true).hide();
		$(this).children("img").fadeIn(500);
	});
});
