$(document).ready(function() {
	<!-- コピーライトエリアの追加 -->
	var h1 = $.get("./parts/h1.html", null, function(){
		$("body").prepend(h1.responseText);
	});

	<!-- topエリアの追加 -->
	$("#top").load("./parts/top.html");

	<!-- ページイメージエリアの追加 -->
	var pageimage = $.get("./parts/pageimage.html", null, function(){
		var url = $(location).attr('href');
		var current = url.split("/")[url.split("/").length - 1];
		var pagename = current.split(".")[0];
		if(pagename == "") {
			pagename = "index";
		}
		if(pagename == "privacy") {
		} else {
			$("#content").prepend(pageimage.responseText);
			$("#pagetitle > img").attr("src", "images/" + pagename + ".jpg");
			$("#pagetitle > img").attr("height", "291");
		}
	});

	<!-- 右メニューエリアの追加 -->
	$("#rightmenu").load("./parts/rightmenu.html");

	<!-- フッタメニューエリアの追加 -->
	$("#footmenu").load("./parts/footmenu.html");

	<!-- コピーライトエリアの追加 -->
	var copyright = $.get("./parts/copyright.html", null, function(){
		$("body").append(copyright.responseText);
	});
});
