/* - - - - - - - - - - - - - - - - - - - - - - -
 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');");
}











over = function() {
//if(sfEls) {
  var sfEls = document.getElementById("nav").getElementsByTagName("LI");
  for (var i=0; i<sfEls.length; i++) {
    sfEls[i].onmouseover=function() {
      this.className+=" over";
    }
    sfEls[i].onmouseout=function() {
      this.className=this.className.replace(new RegExp(" over\\b"), "");
    }
  }
  //}
}
if (window.attachEvent) window.attachEvent("onload", over);
