function setActiveMenu() {
 if (!document.all) return;
 tags = document.all.tags("TD");
 for (var i=0; i<tags.length; i++) {
  if (tags[i].className == "zmtl") {
   tags[i].onmouseover = tagover;
   tags[i].onmouseout = tagout;
   tags[i].onclick = tagclick;
  }
 }
 storeBColor = null;
 storeLColor = null;
 function tagover() {
  if (this.className == "zmtl") {
   storeBColor = this.style.backgroundColor;
   this.style.backgroundColor = "#fff2c0";
  }
  this.style.cursor = "hand";
 }
 function tagout() {
  if (this.className == "zmtl")
   this.style.backgroundColor = storeBColor;
 }
 function tagclick() {
  this.all.tags("A")[0].click();
 }
}




function initMain() {
 setActiveMenu();
}
