$(function() {
// Opacità del div impostata al 50%
$("div#fotoprod .dati").css("opacity","0.0");
 
// Al passaggio del mouse
$("div#fotoprod .dati").hover(function () {
 
// imposta l'opacità al 100%
$(this).stop().animate({
opacity: 0.6
}, "slow");
},
 
// quando il mouse non è sull'elemento
function () {
 
// imposta l'opacità al 50%
$(this).stop().animate({
opacity: 0.0
}, "slow");
});
});
