//Effetto fade applicato alle foto

$(function() {
// Opacità delle immagini impostate al 50%
$(".fade,.fade_2,.fb,.fb_testo,.skype,.skype_testo,.tre_immagini,.tre_immagini_centrale,.cont_link a img").css("opacity","1.0");
		
// Al passaggio del mouse
$(".fade,.fade_2,.fb,.fb_testo,.skype,.skype_testo,.tre_immagini,.tre_immagini_centrale,.cont_link a img").hover(function () {
										  
// imposta l'opacità al 100%
$(this).stop().animate({
opacity: 0.7
}, "fast");
},
		
// quando il mouse non è sull'elemento
function () {
			
// imposta l'opacità al 50%
$(this).stop().animate({
opacity: 1.0
}, "fast");
});
});

