$(function(){
  //初もの画層画像を消す
  $("ul#topNavi span").css("opacity","0");
  //マウスオーバー
  $("ul#topNavi span").hover(function(){
    $(this).stop().animate({
      opacity: 1
    },"normal");
   },
   //マウスアウト
     function(){
        $(this).stop().animate({
          opacity: 0
          },"slow");
     });
});

