$(document).ready(function(){

	// aside navi -------------------------------------------
	
	//最新号立ち読みコーナー 
	monthPath = 201203 ;
	
	//子どもがくれた私の宝物 or eduママの会レポート
	clYearPath = 2011 ;
	
	//教材ダウンロード
	dlYearPath = 2011 ;
	
	//バックナンバー一覧 
	yearPath = 2012 ;
	
	// link set -------------------------------------------
	//最新号立ち読みコーナー
	$("#aside .sideMenu li.menu01 a[href^='index.html']").attr({href: monthPath + "/index.html"});
	$("#aside .sideMenu li.menu01 a[href^='../index.html']").attr({href: "../" + monthPath + "/index.html"});
	$("#aside .sideMenu li.menu01 a[href^='../magazine/index.html']").attr({href: "../magazine/" + monthPath + "/index.html"});
	$("#aside .sideMenu li.menu01 a[href^='../../magazine/index.html']").attr({href: "../../magazine/" + monthPath + "/index.html"});
	//子どもがくれた私の宝物（2011/08/18廃止）
	/*$("#aside .sideMenu li.menu02 a[href^='index.html']").attr({href: clYearPath + ".html"});
	$("#aside .sideMenu li.menu02 a[href^='../index.html']").attr({href: "../" +  clYearPath + ".html"});
	$("#aside .sideMenu li.menu02 a[href^='../treasure/index.html']").attr({href: "../treasure/" +  clYearPath + ".html"});
	$("#aside .sideMenu li.menu02 a[href^='../../treasure/index.html']").attr({href: "../../treasure/" +  clYearPath + ".html"});*/
	//eduママの回レポート（2011/08/18開始）
	$("#aside .sideMenu li.menu02 a[href^='index.html']").attr({href: clYearPath + ".html"});
	$("#aside .sideMenu li.menu02 a[href^='../index.html']").attr({href: "../" +  clYearPath + ".html"});
	$("#aside .sideMenu li.menu02 a[href^='../event/index.html']").attr({href: "../event/" +  clYearPath + ".html"});
	$("#aside .sideMenu li.menu02 a[href^='../../event/index.html']").attr({href: "../../event/" +  clYearPath + ".html"});
	//教材ダウンロード
	$("#aside .sideMenu li.menu03 a[href^='index.html']").attr({href: dlYearPath + ".html"});
	$("#aside .sideMenu li.menu03 a[href^='../index.html']").attr({href: "../" +  dlYearPath + ".html"});
	$("#aside .sideMenu li.menu03 a[href^='../download/index.html']").attr({href: "../download/" +  dlYearPath + ".html"});
	$("#aside .sideMenu li.menu03 a[href^='../../download/index.html']").attr({href: "../../download/" +  dlYearPath + ".html"});
	//バックナンバー一覧
	$("#article p.backToBn a[href='index.html']").attr({href: yearPath + ".html"});
	$("#aside .sideMenu li.menu04 a[href^='index.html']").attr({href: yearPath + ".html"});
	$("#aside .sideMenu li.menu04 a[href^='../index.html']").attr({href: "../" +  yearPath + ".html"});
	$("#aside .sideMenu li.menu04 a[href^='../magazine/index.html']").attr({href: "../magazine/" +  yearPath + ".html"});
	$("#aside .sideMenu li.menu04 a[href^='../../magazine/index.html']").attr({href: "../../magazine/" +  yearPath + ".html"});
	
	
	
	// backnumber page -------------------------------------------

	$(".backnumberPage #article .section:last").addClass("lastChild");
	
	$(".teachPage .section:last").css("margin-bottom","0");
	
	// bottom page -------------------------------------------
	
	//page top	
	$(".topJumps").click(function () {
		$(this).blur();
		$("html,body").animate({ scrollTop: 0 }, 'normal');
		return false;
	});
		
});





