//Effetto fade applicato alle foto

$(function() {
// Opacità delle immagini impostate al 50%
$(".tastomenu1,.tastomenu2,.tastomenu3,.tastomenu4,.tastomenu5,.tastomenu6,.tastomenu7,div.social a,div.imgmarchi a,div.spot1 a,div.spot2 a, div.banner_lechler a").css("opacity","1.0");
		
// Al passaggio del mouse
$(".tastomenu1,.tastomenu2,.tastomenu3,.tastomenu4,.tastomenu5,.tastomenu6,.tastomenu7,div.social a,div.imgmarchi a,div.spot1 a,div.spot2 a, div.banner_lechler a").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");
});
});

