startList = function() {
			if (document.all&&document.getElementById) {
				nav1Root = document.getElementById("imagenav1");
				for (i=0; i<nav1Root.childNodes.length; i++) {
					node1 = nav1Root.childNodes[i];
					if (node1.nodeName=="DIV") {
						node1.onmouseover=function() {
							this.className+=" over";
						}
						node1.onmouseout=function() {
							this.className=this.className.replace(" over", "");
						}
					}
				}
			}
		}

startuserList = function() {
			if (document.all&&document.getElementById) {
				usernav1Root = document.getElementById("usernav1");
				for (i=0; i<usernav1Root.childNodes.length; i++) {
					usernode1 = usernav1Root.childNodes[i];
					if (usernode1.nodeName=="DIV") {
						usernode1.onmouseover=function() {
							this.className+=" over";
						}
						usernode1.onmouseout=function() {
							this.className=this.className.replace(" over", "");
						}
					}
				}
			}
		}



function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      oldonload();
      func();
    }
  }
}

