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://www.qianlong.com/2004aboutus/index.htm";
links[1] = "http://www.qianlong.com/2004aboutus/2004ggfw.htm";
links[2] = "http://www.qianlong.com/2004aboutus/2004cpyc.htm";
links[3] = "http://www.qianlong.com/2004aboutus/2004kfzx.htm";
links[4] = "http://www.qianlong.com/2004aboutus/2004flsm.htm";
links[5] = "http://www.qianlong.com/2004aboutus/2004lxfs.htm";

text = new Array();
text[0] = "关于我们";
text[1] = "广告服务";
text[2] = "诚聘英才";
text[3] = "客服中心";
text[4] = "法律声明";
text[5] = "联系方式";
document.writeln('<table width="760" border="0" cellspacing="0" cellpadding="0"><tr><td width="150"><img src="/images/home_logo.gif" width="150" height="70"></td><td align="center"><!--Ad for you topbanner Start --><IFRAME WIDTH=468 HEIGHT=60 MARGINWIDTH=0 MARGINHEIGHT=0 HSPACE=0 VSPACE=0 FRAMEBORDER=NO BORDER=0 SCROLLING=NO NORESIZE BORDERCOLOR=#000000 SRC="http://ad2.qianlong.com/cgi-bin/iframe?acc=1BCDEF1995&spc=73&width=468&height=60"></IFRAME><!--Ad for you topbanner End --></td></tr></table>');
document.writeln('<table cellspacing=0 cellpadding=3 width=758 height=24 border=0 >');
document.writeln('<tr>');
document.writeln('<td width=20 bgcolor="#646464">&nbsp;</td>');
for (x=0; x<links.length; x++) 
  {
  if (loc.indexOf(links[x]) > -1) 
  {
    document.writeln('<td valign="baseline"  align=center  bgcolor="#FFCC00"><font color="#000000"><b>' + text[x] + '</b></font> </td>');
  } 
else 
  {
  document.writeln('<td valign="baseline" align=center  bgcolor="#646464" class="white"><a href="' + links[x] + '" >' + text[x] + '</a> </td>');
  }
  }
document.writeln('<td width=250 bgcolor="#646464">&nbsp;</td>');
document.writeln('</tr>');
document.writeln('</table>');
