﻿$(document).ready(function(){


// ページトップ・アンカー
// -------------------------------------------------------------------------------
$("#pagetop,.pagetop a, #anchor a, .anchor a").click(function(){
	$((navigator.userAgent.indexOf("Opera") != -1) ? document.compatMode == 'BackCompat' ? 'body' : 'html' :'html,body').animate({scrollTop:0}, 'fast');
});


// ロールオーバー
// -------------------------------------------------------------------------------
$('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 printDate() {
	myDate = new Date();
	myYear = myDate.getFullYear();
	document.write(myYear);
}


