// JavaScript Document

$(document).ready(function(){

$('.img_hover').hide();

	$('.img_normale').hover(function () {
		$(this).parent().find($('.img_hover')).fadeIn();
	});
	
	$('.img_hover').mouseleave(function () {
		$(this).parent().find($('.img_hover')).fadeOut();
	});

});
