/**
 * @author yuko
 */


/* マウスオーバーで画像を変更 -----------------------------------------*/
$(function(){
     $('a img').hover(function(){
        $(this).attr('src', $(this).attr('src').replace('_off', '_on'));
          }, function(){
             if (!$(this).hasClass('currentPage')) {
             $(this).attr('src', $(this).attr('src').replace('_on', '_off'));
        }
   });
});

/* 外部リンクを別タブで開く  -------------------------------------------*/
$(function(){
     $("a[href^='http://']").attr("target","_blank");
});

/* ページトップへスクロールする------------------------------------------*/
$(function(){
     $("#toTop a").click(function(){
     $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');
     return false;
     })
});


/* テーブルの偶数・奇数の行の色を変える ---------------------------------*/
$(function(){
     $("tr:odd").addClass("odd");
});

/* スライドパネル  ---------------------------------------------------*/
$(function(){
     $(".open").click(function(){
      $("#slideBox").slideToggle("slow");
     });
});

/* アコーディオン ---------------------------------------------------*/
$(function() {
   $('#accordion dd').hide();
   $('#accordion dt a').click(function(){
       $('#accordion dd').slideUp();
       $(this).parent().next().slideDown();
       return false;
   });
});


/* ツールチップ ----------------------------------------------------*/
$(function(){
     $(".tooltip a").hover(function() {
        $(this).next("span").animate({opacity: "show", top: "-75"}, "slow");}, function() {
               $(this).next("span").animate({opacity: "hide", top: "-85"}, "fast");
     });
});

/* ドロップダウンメニュー ----------------------------------------------*/
$(function(){
    $(document).ready(function(){ 
        $("ul.sf-menu").superfish(); 
    }); 
});




