var	lobj	= new Object();
function	initMenu() {
	if (document.getElementById) {
		var	mobj	= null;
		var	sobjs	= null;
		var	mnobj	= null;
		mobj	= document.getElementById("woman");
		lobj	= mobj;
		mobj.style.display	= "block";
		mobj	= document.getElementById("post");
		mobj.style.display	= "none";
		mobj	= document.getElementById("game");
		mobj.style.display	= "none";
		mobj	= document.getElementById("sf");
		mobj.style.display	= "none";
		mobj	= document.getElementById("etc");
		mobj.style.display	= "none";
		mnobj	= document.getElementById("illustmenu");
		mnobj.style.width	= "107px";

		mobj	= document.getElementById("illustmenu");
		sobjs	= mobj.getElementsByTagName("div");
		for (var i = 0; i < sobjs.length; i++) {
			if (sobjs[i].className == "illobj") {
				aobjs	= sobjs[i].getElementsByTagName("a");
				iobjs	= aobjs[0].getElementsByTagName("img");
				sobjs[i].appendChild(iobjs[0]);
				sobjs[i].removeChild(aobjs[0]);
				mobjs	= sobjs[i].getElementsByTagName("img");
				mobjs[0].style.cursor	= "pointer";
			}
		}
		cobj	= document.getElementById("contents");
		iobj	= document.createElement("img");
		iobj.setAttribute("src", "images/hobbyillust/woman/hwill_01.jpg");
		iobj.removeAttribute("width");
		iobj.removeAttribute("height");
		iobj.style.margin	= "auto";
		iobj.style.marginBottom	="50px";
		cobj.appendChild(iobj);
	}
}
function	chgImage(obj) {
	if (document.getElementById) {
		var	path		= new Array();
		var	file			= "";
		var	iobjs			= document.getElementById("contents").getElementsByTagName("img");
		iobjs[0].src			= obj.src.split("gif").join("jpg");
		iobjs[0].style.margin		= "auto";
		iobjs[0].style.marginBottom	= "50px";
	}
	return	false;
}
function	tglMenu(objName) {
	if (document.getElementById) {
		var	mobj		= document.getElementById(objName) ;
		if (mobj.style.display == "none") {
			lobj.style.display = "none";
			mobj.style.display = "block";
			lobj	= mobj;
		}
	}
}
