startList = function() {
  prepareMenu('sidebar');
  prepareMenu('adminmenu');
  prepareMenu('header');
}
window.onload = startList;

prepareMenu = function(id) {
  if (document.all && document.getElementById) {
    navRoot = document.getElementById(id);
    if (navRoot){
      navUls = navRoot.getElementsByTagName('ul');
      if (navUls){
        for (i = 0; i < navUls.length; i++){
          navLis = navUls[i].getElementsByTagName('li');
          for (j = 0; j < navLis.length; j++) {
            navLis[j].onmouseover = function() { this.className += " over"; }
            navLis[j].onmouseout  = function() { this.className = this.className.replace(" over", ""); }
          }
        }
      }
    }
  }
}
