// jquery使用JS

// マウスオーバーで画像を変更
$(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'));
        }
   });
});


// ページトップへスクロールする - スクロールさせたい要素に「pagetop」というクラスを付与
$(function(){
     $("#pagetop a,.pagetop_middle a").click(function(){
     $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');
     return false;
     })
});


