
    $(document).ready(function(){ 
        $(".hover-reveal li a").hover(function(){
          $(this).children('span').stop();
          $(this).children('span').css({opacity: '1', display: 'block'});
        },function(){
          $(this).children('span').animate({opacity: 'hide'});
        });
    });