$(document).ready(function() {
	
	init_blocks();

});

function init_blocks()
{
	$('.item').hover(function(){
	
		$(this).find('img').fadeOut();
		$(this).find('.contents').fadeIn();
	
	},function(){
	
		$(this).find('img').fadeIn();
		$(this).find('.contents').fadeOut();
	
	}).click(function(){
	
		document.location.href = $(this).attr('href');
		
	});

}
