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