
/* p2 - JavaScript for menu category open-close*/

if(document.getElementById){
	document.writeln('<style type="text/css" media="all">');
	document.writeln('<!--');
	document.writeln('.sidehide{display:none;}');
	document.writeln('-->');
	document.writeln('</style>');
}

function showHide2008(id){
	if(!id)id=this.id;
	// window.alert(id);
	var disp = document.getElementById(id).style.display;

	if(disp == "block"){
		document.getElementById(id).style.display = "none";
	}else{
		document.getElementById(id).style.display = "block";
	}

	// 自身の上位のDIVでclassがmenu_detailであるところを探し出す。

	// 探し出した親の高さを変更

	return false;
}

function TrackbackInfoAreaControl(bl,mk_sp){
	// コメントでも使用する
	var mk = document.getElementById(mk_sp);
	if(mk.innerHTML=='▼'){
		mk.innerHTML='▲';
	} else {
		mk.innerHTML='▼';
	}
	showHide2008(bl);
}


