var p="";
function show(n){
	hdnEng();
	document.getElementById(n).className='visible';
	if(p!=""){ 
		clearTimeout(p);
	}
}
function hidden(){
	p=setTimeout("hdnEng()",100);
}
function hdnEng(){
	for (i=1;i<2;i++){//i<x=プルダウンメニュー数+1
		var t = "subMenu" + i;
		document.getElementById(t).className='hidden';
	}
}
function pMenu1(){
var s="";
	s+='<ul id="subMenu1" onmouseover="show'
	s+="('subMenu1');"
	s+='" '
	s+='onmouseout="hidden();'
	s+='" '
	s+='class="hidden">'
	s+='<li id="pull01"><a href="/n-syoku/index.html">長居植物園</a></li>'
	s+='<li id="pull02"><a href="/stadium/index.html">長居陸上競技場</a></li>'
	s+='<li id="pull03"><a href="http://www.ocsga.or.jp/n-jyoho/">花と緑と自然の情報センター</a></li>'
	s+='<li id="pull04"><a href="/stadium2/index.html">長居第2陸上競技場</a></li>'
	s+='<li id="pull05"><a href="/ballgame/index.html">長居球技場</a></li>'
	s+='<li id="pull06"><a href="/nagai_sumo/index.html">長居相撲場</a></li>'
	s+='<li id="pull07"><a href="/tennis/index.html">長居庭球場</a></li>'
	s+='<li id="pull08"><a href="/training-center/index.html">長居陸上競技場 トレーニングセンター</a></li>'
	s+='<li id="pull09"><a href="/nagai_ground/index.html">長居運動場</a></li>'
	s+='<li id="pull10"><a href="/nagai_pool/index.html">長居プール</a></li>'
	s+='</ul>'
	document.write(s);
}

