jQuery(document).ready(function(){
jQuery("b").hover(
function() {
jQuery(this).stop().fadeTo("slow",0);
},
function() {
jQuery(this).stop().fadeTo("slow",1);
});
 
});
