$(document).ready(function(){



// ページトップ・アンカー
// -------------------------------------------------------------------------------
$("#pagetop,.pagetop").click(function(){
	$((navigator.userAgent.indexOf("Opera") != -1) ? document.compatMode == 'BackCompat' ? 'body' : 'html' :'html,body').animate({scrollTop:0}, 'fast');
});

$("#anchor a, .anchor a").click(function(){
	$('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top },'fast');
	return false;
});



// ロールオーバー
// -------------------------------------------------------------------------------
$('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'));
	}
});



});
