if (window.addEventListener) {
	window.addEventListener("load", __Initialize, false);
} else if (window.attachEvent) {
	window.attachEvent("onload", __Initialize);
}


function __Initialize()
{
	if (document.getElementById("plugin")) {
		if (location.pathname.match("blog")) {
			document.getElementById("calender-blog").style.display = "block";
			document.getElementById("left-area-blog").style.display = "block";
		} else if (location.pathname.match("overnow")) {
			document.getElementById("calender-overview").style.display = "block";
		} else if (location.pathname.match("information")) {
			document.getElementById("left-area-information").style.display = "block";
		} else if (location.pathname.match("intro")) {
			document.getElementById("left-area-intro").style.display = "block";

		}
	}

	if (document.getElementById("sidemenu")) {
		if (location.pathname.match("company")) {
			document.getElementById("menu-company").style.display = "block";
		} else if (location.pathname.match("product")) {
			document.getElementById("menu-product").style.display = "block";
		} else if (location.pathname.match("philosophy")) {
			document.getElementById("menu-philosophy").style.display = "block";
		} else if (location.pathname.match("recruit")) {
			document.getElementById("menu-recruit").style.display = "block";
                }
	}

	
}