var loc=stringA=location.href.toLowerCase()
var strhref=""
var strlocation=window.location.host
//var strlocation="http://www.maizhihua.com.cn/test/"
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] = "default.htm";
links[1] = "#";
links[2] = "cpzs/";
links[3] = "khfw/";
links[4] = "lxwm.htm";


document.writeln('<table border="0" cellspacing="0" cellpadding="0">');
document.writeln('<tr>');
for (x=0; x<links.length; x++) {
  if (loc.indexOf(links[x]) > -1) {
  document.writeln('<td><img src="'+ strhref + 'images/dh' + x + '_f2.gif" ></td>');
  } else {
  document.writeln('<td><A HREF="'+ strhref + links[x] + '" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'dh' + x + '\',\'\',\''+ strhref + 'images/dh' + x + '_f2.gif\',0);"><img name="dh' + x + '" src="'+ strhref + 'images/dh' + x + '.gif" border="0"></a></td>');
  }
  }
document.writeln('</tr>');
document.writeln('</table>');
