// 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", "");
}
}
}
}
}
function getHeight() {
	var alles02Height= document.getElementById('alles02').offsetHeight;  
	var layout12Height= document.getElementById('layout12').offsetHeight; 
	
		document.getElementById('menue').style.height = alles02Height-32+"px";
		document.getElementById('layout13').style.height = layout12Height+1+"px";
			document.getElementById('infoboxbereich').style.height = alles02Height-80+"px";
			
		var links01Height= document.getElementById('links01').offsetHeight; 
		var allesHeight= document.getElementById('alles').offsetHeight;  
 
		document.getElementById('links').style.height = allesHeight-links01Height+"px";
		document.getElementById('rechts').style.height = allesHeight-links01Height+"px";

}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
    if (restore) selObj.selectedIndex=0;
}

