jQuery.noConflict();
//Effetto fade applicato alle foto

jQuery(function() {
// Opacità delle immagini impostate al 50%
jQuery(".img_hover").css("opacity","1.0");
		
// Al passaggio del mouse
jQuery(".img_hover").hover(function () {
										  
// imposta l'opacità al 100%
jQuery(this).stop().animate({
opacity: 0.7
}, "fast");
},
		
// quando il mouse non è sull'elemento
function () {
			
// imposta l'opacità al 50%
jQuery(this).stop().animate({
opacity: 1.0
}, "fast");
});
});

