var loc=stringA=location.href.toLowerCase()
var strhref=""
var strlocation=window.location.host
var pos=stringA.indexOf(strlocation)
var len=strlocation.length
if (pos>=0){
	stringA=stringA.substring(pos+len,stringA.length);
	while (stringA.indexOf("/")>=0){
		pos=stringA.indexOf("/")
		strhref=strhref+"../"
		stringA=stringA.substring(pos+1,stringA.length);
	}
}

links = new Array();
links[0] = "http://china.qianlong.com/115gh/index.htm";
links[1] = "http://china.qianlong.com/115gh/hjbh.htm";
links[2] = "http://china.qianlong.com/115gh/whcc.htm";
links[3] = "http://china.qianlong.com/115gh/jjfz.htm";
links[4] = "http://china.qianlong.com/115gh/zdgc.htm";
links[5] = "http://china.qianlong.com/115gh/ggjt.htm";
links[6] = "http://china.qianlong.com/115gh/ghysm.htm";
links[7] = "http://china.qianlong.com/115gh/bmb.htm";



text = new Array();
text[0] = "首　　页";
text[1] = "综合经济";
text[2] = "产业发展";
text[3] = "统筹城乡";
text[4] = "资源环境";
text[5] = "改革开放";
text[6] = "社会发展";
text[7] = "市民建言";


document.writeln('<table width="100%" border="0" cellpadding="2" cellspacing="2" class="daohang" >');
document.writeln('<tr align="center" valign="middle">');
document.writeln('<td >│</td>');
for (x=0; x<links.length; x++) 
  {
  if (loc.indexOf(links[x]) > -1) 
  {
    document.writeln('<td>' + text[x] + '</td><td>│</td>');
  } 
else 
  {
  document.writeln('<td><a href="' + links[x] + '" >' + text[x] + '</a> </td><td>│</td>');
  }
  }
document.writeln('</tr>');
document.writeln('</table>');