/* - - - - - - - - - - - - - - - - - - - - - - -
 JavaScript

 HAPedit 3.1.11.111
 - - - - - - - - - - - - - - - - - - - - - - - */



function popUp(URL,hoehe,breite) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, 'movie', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+breite+",height="+hoehe+",left =150,top = 127');");
}











startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;