 divlist = document.getElementsByTagName("div");
  for(i=0; i < divlist.length; i++) {
    if(divlist[i].className == "menutitle") {
      divlist[i].onmouseover = function() {
        this.id = this.id.replace("1","2");
      }
      divlist[i].onmouseout = function() {
        this.id = this.id.replace("2","1");
      }
    } 
  }
  divlist = document.getElementById("topmenuwrapper").getElementsByTagName("div");
  for(i=0; i < divlist.length; i++) {
    divlist[i].onmouseover = function() {

      this.className = this.className.replace("off","on");
      this.getElementsByTagName("ul")[0].style.display = "block";
    }
    divlist[i].onmouseout = function() {
      this.className = this.className.replace("on","off");
      this.getElementsByTagName("ul")[0].style.display = "none";
    }
  }
  lilist = document.getElementById("topmenuwrapper").getElementsByTagName("li");
  for(i=0; i < lilist.length; i++) {
    lilist[i].onmouseover = function() {
      this.getElementsByTagName("a")[0].style.color="#880000";
      this.className = "hover";
    }
    lilist[i].onmouseout = function() {
      this.getElementsByTagName("a")[0].style.color="#ffffff";
      this.className = "";
    }
  }