function nas(idname){
	var navi_root = document.getElementById(idname);
	navi_root.style.display = "block";
	navi_root.style.zIndex = "1";
}

function nah(idname){
	var navi_root = document.getElementById(idname);
	navi_root.style.display = "none";
}
