﻿// JavaScript Document

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;

// popup
function fensterli(url)
{
  F1 = window.open(url,"gallerie","width=423,height=185,top=10,left=10");
}
// ende popup

// popup
function fensterli2(url)
{
  F2 = window.open(url,"screen","width=880,height=660,top=5,left=5");
}
// ende popup
