
// MENU - KLAPPE FÜR IE
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", "");
				}
			}
		}
	}
}


// menu-highlight :: function FARBE 
query = self.location.search;
function start(){
	if (query != '')
	{
		query = query.substr(1, query.length - 1);
		query = query.replace(/%26/,'&');
		teile = query.split('=');
		farbe(teile[1]);
	}
}


function farbe(id){
		var i=0;	
			while(window.document.getElementsByTagName("a")[i])
	  		{
				  			window.document.getElementsByTagName("a")[i].style.backgroundColor="";
	  			i++;
	  		}
			window.document.getElementById(id).style.backgroundColor="#000";
	}
	

