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