$(document).ready(function(){
    $("#banner a").hover(
        function(){
            $(this).children( "span").fadeOut();
        },
        function(){
            $(this).children("span").fadeIn();
            });
});
