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://house.qianlong.com/xxzx.htm";
links[1] = "http://house.qianlong.com/lpzh.htm";
links[2] = "http://house.qianlong.com/qlttzs.htm";
links[3] = "http://house.qianlong.com/zxzs.htm";
links[4] = "http://house.qianlong.com/index.htm#";
links[5] = "http://house.qianlong.com/index.htm#03";

text = new Array();
text[0] = "讯息中心";
text[1] = "楼盘总汇";
text[2] = "租售集市";
text[3] = "装饰装修";
text[4] = "业主论坛";
text[5] = "建筑文化";

document.writeln('<table width="490" height="20" border="0" cellpadding="0" cellspacing="0" class="daohang12">');
document.writeln('<tr>');
for (x=0; x<links.length; x++) {
	if (loc.indexOf(links[x]) > -1) {
		document.writeln('<td width="80">' + text[x] + ' </td>');
	} 
	else {
		document.writeln('<td width="80"><a href="' + links[x] + '" >' + text[x] + '</a> </td>');
	}
}
document.writeln('<td width="10"><img src="/images/shim.gif" width="1" height="1"></td>');
document.writeln('</tr>');
document.writeln('</table>');