//Effetto fade applicato al DIV
$(function() {

$(".other_content img, .site_content img, .logo").css("opacity","1.0");
		
// Al passaggio del mouse
$(".other_content img, .site_content img, .logo").hover(function () {

$(this).stop().animate({
opacity: 0.5
}, "fast");
},
		
// quando il mouse non è sull'elemento
function () {

$(this).stop().animate({
opacity: 1.0
}, "fast");
});
});
