jQuery(document).ready(function() {
	$('#blocchihome').children().each(function(){
		$(this).hover(
			function(){				
				$(this).fadeTo(300,0).fadeTo(300,1);							
			},
			function(){
				//
			}
		);
	});
});
