startList = function() {
	if (document.all&&document.getElementById) {
		Container = document.getElementById("menu");
		navRoot = Container.childNodes[0];
		// Seknavi zu/aufklappen
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
				
			node.onmouseover=function() {
					this.className+="over ";
					// alert (this.className);
			}
			node.onmouseout=function() {
					this.className=this.className.replace("over", "");
					// alert (this.className);
			}
			
			// Seknavi zu/Aufklappen
			if (node.nextSibling.childNodes[2].childNodes.length) {
				for (j=1; j<node.nextSibling.childNodes[2].childNodes.length; j++) { 
					if (node.nextSibling.childNodes[2].childNodes[j].lastChild.className=="sub_sub_projekte") 
					{
						node.nextSibling.childNodes[2].childNodes[j].onmouseover=function(){
							this.className+="over ";
							// alert (this.className);
						}
						node.nextSibling.childNodes[2].childNodes[j].onmouseout=function() {
								this.className=this.className.replace("over", "");
								// alert (this.className);
						}
					}
				}
			}
			
		}
	}
}
startList();