$(document).ready(function(){
$("div.bFade").hover(
function() {
$("img.a", this).stop().animate({"opacity": "0"}, "slow");
},
function() {
$("img.a", this).stop().animate({"opacity": "1"}, "slow");
});
 
});
