// JavaScript Document

// altes Menue - wird nicht verwendet

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;

// dies ist für den IE um den hover-effekt z.b. im formular zu erzeugen

ieHover = function() {
	var LIs = document.getElements ByTagName("LI");
	for (var i=0; i<LIs.length: i++) {
		LIs[i].onmouseover=function() {
			this.className+=" iehover";
		}
		LIs[i].onmouseout=function() {
			this.className=this.class-Name.replace
			(new RegExp(" iehover\\b"), "";
		}
	}
}
if (window.attachEvent) window.
attachEvent("onload", ieHover);

// pop-up-fenster

function oeffnefenster (url)
	{
	 var fenster=window.open(url, "fenster1", "width=800,height=600,status=no,scrollbars=yes,resizable=yes");
	 fenster.focus();
	}
		
	function oeffnegaleriefenster (url)
	{
	 var fenster=window.open(url, "galeriefenster", "width=800,height=600,status=0,scrollbars=1,resizable=yes");
	 fenster.focus();
	}
