// JavaScript Document
$(document).ready(function(){

$(function () {
  $('.imgpulsanti').hover(
  
  function () {
    $(this).animate({opacity: '0'}, 150);
  }, 
  
function () {
    $(this).animate({opacity: '1'}, 150);
  }
  
  );
});

})
