jQuery(document).ready(function(){
 
jQuery("img.b").hover(
function() {
jQuery(this).stop().animate({"opacity": "0"}, "medium");
},
function() {
jQuery(this).stop().animate({"opacity": "1"}, "medium");
});
 
});
