$(document).ready(function(){
$(".pulsante_img").fadeTo("slow", 1.0);
$(".pulsante_img").hover(function(){
$(this).fadeTo("slow", 0.3);
},function(){
$(this).fadeTo("slow", 1.0);
});
});


$(document).ready(function(){
$(".pulsante2_img").fadeTo("slow", 0.3);
$(".pulsante2_img").hover(function(){
$(this).fadeTo("slow", 1.0);
},function(){
$(this).fadeTo("slow", 0.3);
});
});

$(document).ready(function(){
$(".pulsante3_img").fadeTo("slow", 1.0);
$(".pulsante3_img").hover(function(){
$(this).fadeTo("slow", 0.3);
},function(){
$(this).fadeTo("slow", 1.0);
});
});
