$(function() {
// Opacity set to 100%
$(".fade").css("opacity","100");
 
// On MouseOver
$(".fade").hover(function () {
 
// Set opacity to 0%
$(this).stop().animate({
opacity: 0
}, "fast");
},
 
// On MouseOut
function () {
 
// Set opacity back to 100%
$(this).stop().animate({
opacity: 1
}, "slow");
});
});
