$(function(){
	
	$("#leftnav").setTemplateURL("./templates/leftnavIndex.htm");
	$("#leftnav").processTemplate();

	$("#mainnav").setTemplateURL("./templates/headerIndex.htm");
	$("#mainnav").processTemplate();

	$("#rightcontents").setTemplateURL("./templates/rightcontentsIndex.htm");
	$("#rightcontents").processTemplate();

	$("#logofooter").setTemplateURL("./templates/footerIndex.htm");
	$("#logofooter").processTemplate();

	$("#newsfooter").setTemplateURL("./templates/newsfooterIndex.htm");
	$("#newsfooter").processTemplate();
	
	$("#banner01").setTemplateURL("./templates/bannerIndex.htm");
	$("#banner01").processTemplate();

	$("#accessfooter").setTemplateURL("./templates/accessfooterIndex.htm");
	$("#accessfooter").processTemplate();

	$.postJSON("./PHP/json.php/Thematch/selectNewMatchData",function(json) {
		newmatchid = json.match_id;
		$("#newMatch").html("<a href='./match/"+newmatchid+".html'>最新マッチレポート</a>")
		$("#newMatch2").html("<a href='./match/"+newmatchid+".html'>最新マッチレポート</a>")
	});
	
});


