	var id
	var path = document.location.pathname;
	var psA  = path.split(" /");
	var hPD = 8;
	var pd  = new Array(8);
 	  pd[1] = "/index.asp，主 页";
 	  pd[2] = "/gaiguan/index.htm，景区概况";
	  pd[3] = "/fuwu/index.htm，服务设施";
	  pd[4] = "/pic/index.htm，景区相册";
	  pd[5] = "/zhaoshang/zs1.htm，景区招商";
	  pd[6] = "/huobang/index.htm，合作伙伴";
	  pd[7] = "/gb/index.asp，留 言 簿";
	  pd[8] = "/abouts/index.htm，关于我们";

//--- 导航感应 ----
function mOvr(src) {
	if (!src.contains(event.fromElement)) {
	 	 src.style.cursor = 'hand'; src.bgColor = "#FF9900";
//	 	 src.style.cursor = 'hand'; src.bgColor = "#ffbb66"; 
	}
}
function mOut(src) {
	if (!src.contains(event.toElement)) {
		src.style.cursor = 'default'; src.bgColor = "#e6e6e6"; 
	}
} 
function mClk(src) {
	if(event.srcElement.tagName=='TD'){
		src.children.tags('A')[0].click();
	}
}


HtmlStr  =      '<TABLE border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%">' +
                '  <TR>' +
                '  <TD width="280" rowspan="2"><IMG src="/images/top1.jpg" width="280" height="100"></TD>' +
                '  <TD align="center"><IMG border="0" src="/images/top2.jpg" width="490" height="80"></TD>' +
		'  </TR><TR><TD align="left">' +
		'  <TABLE style="BORDER-COLLAPSE: collapse" borderColor="#111111" cellSpacing="0" cellPadding="0" width="100%" background="/images/top3_10.gif" border="0" height="20"><TR>' ;


for (i=1; i<=hPD; i+=1) {
	thePD  = pd[i];
	thePD  = thePD.split("，");
	thePD0 = thePD[0].split("  /");
	HtmlStr += '<TD align="center" nowrap><IMG src="/images/button1.jpg" border="0" name="_button_r1_c04" width="16" height="15"></TD>';
	if (thePD0[0] == psA[0] | i==id){
		HtmlStr += '<TD onClick="mClk(this);" align="center" nowrap><a target="_top" href="' + thePD[0] + '"><b><FONT color="#FF0000">' + unescape(thePD[1]) + '</FONT></b></a></TD>';
	}else{
		HtmlStr += '<TD onMouseOver="mOvr(this);" onMouseOut="mOut(this);" onClick="mClk(this);" align="center" nowrap><a target="_top" href="' + thePD[0] + '"><FONT color="#000000">' + unescape(thePD[1]) + '</FONT></a></TD>';
	}
}
HtmlStr +=	' </TR></TABLE></TD></TR><TR><TD colspan="2" background="/images/topd.gif"><IMG src="/images/topd.gif" width="300" height="10"></TD></TR></TABLE>' ;
document.write (HtmlStr);