<!--
/////////////////////////////////////////////////

	// 1. マウスオーバーで画像を変更
$(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'));
        }
   });
});
 

// 3. ページトップへスクロールする
$(function(){
     $("#toTop a").click(function(){
     $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');
     return false;
     })
});


//  今年
function myDate(){
  var myDate = new Date() ;myYear = myDate.getFullYear ();
  document.write(myYear);
}


//  2. 外部リンクを別タブで開く
$(function(){  
     $("a[href^='http://']").attr("target","_blank");  
}); 


//  4. Div全体をクリックできるようにする
$(function(){  
     $(".sampleBox").click(function(){  
         window.location=$(this).find("a").attr("href");  
         return false;  
    });  
}); 


// 17. ツールチップ
$(function(){  
     $(".tooltip a").hover(function() {  
        $(this).next("span").animate({opacity: "show", top: "-75"}, "slow");}, function() {  
               $(this).next("span").animate({opacity: "hide", top: "-85"}, "fast");  
     });  
}); 

//-->
