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