$(function(){
$("#homeDownload a").not(".active").hover(
    function(){$("b",this).fadeIn("slow");},
    function(){$("b",this).fadeOut('fast');});
});
