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



// ウエディングレポート
// -------------------------------------------------------------------------------
$("#backnumber li:nth-child(even)").addClass("float_r");
$("#report_gallery li:nth-child(3n)").addClass("float_r");



// ページトップ・アンカー
// -------------------------------------------------------------------------------
$("#pagetop a,.pagetop a, #anchor a, .anchor a").click(function(){
	$('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top },'fast');
	return false;
});



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



