var urlRoot = "http://www.infoconsult.cn/";

var menuDiv = "<div id=menuDiv style='position:absolute;left:0px,top:0px;display:none;background-color:#000000;border:0px,z-index:4'"
    + " onMouseOver=\"this.style.display='block'\" onMouseOut=\"this.style.display='none'\"></div>";

var menuTableTr = "<table align='center' width='788' height='24' border='0' cellpadding='0' cellspacing='0'>  <tr nowrap>"
var menuTrTable = "</tr></table>"

var menuTdFirst = "<td width='40'></td>";
var menuTdLast = "<td>&nbsp;</td>";

var menuSprTd = "<td width='40' nowrap></td>";

document.write(menuDiv + menuTableTr + menuTdFirst);

document.write(getMenuTD(false, "Home", urlRoot + "", "首  页"));
document.write(menuSprTd);
document.write(getMenuTD(true, "about_us", urlRoot + "aboutus/index.htm", "走近讯博", "_self"));
document.write(menuSprTd);
document.write(getMenuTD(true, "customerlist", urlRoot + "cooperation/customerlist.htm", "成功案例","_self"));
document.write(menuSprTd);
document.write(getMenuTD(true, "support", urlRoot + "support/index.htm", "服务支持", "_self"));
document.write(menuSprTd);
document.write(getMenuTD(true, "cooperate", urlRoot + "cooperation/index.htm", "合作联盟", "_self"));
document.write(menuSprTd);
document.write(getMenuTD(true, "job", urlRoot + "job/index.htm", "招聘信息", "_self"));
document.write(menuSprTd);
document.write(getMenuTD(true, "contact", urlRoot + "contact/index.htm", "联系我们", "_self"));
document.write(menuSprTd);
document.write(getMenuTD(true, "websitemap", urlRoot + "websitemap/index.htm", "网站地图"));
document.write(menuTdLast + menuTrTable);


  function getMenuTD(haveSubs, curKey, curUrl, curUrlTitle, target) {
      if(target == null) {
          target = "_self";
      }
  	var ret = "<td width='1%' nowrap";
  	ret = ret + "><a href='" + curUrl + "' target='" + target + "' class=txt_blak>" + curUrlTitle + "</a></td>";
  	return ret;
  }
 