startList = function() {

	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("navigation");
		
		// fix for ie
		// ausklappen
		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", "");
				}
			}
		}
		

		// einzelne listenelemente
			
		for (i=0; i<navRoot.childNodes.length; i++) {
			
			rootnode = navRoot.childNodes[i];
			
			if (rootnode.nodeName == "LI") {
				
				for (n=0; n<rootnode.childNodes.length; n++) {
				
				  	linode = rootnode.childNodes[n];
					if (linode.nodeName == "UL") {
				
						for (e=0; e<linode.childNodes.length; e++) {
							node = linode.childNodes[e];
							if (node.nodeName=="LI") {
					
								node.onmouseover=function() {
									this.className+="over";
							
								}
								node.onmouseout=function() {
									this.className=this.className.replace("over", "");
								}
							}
						}
					
					}
				}
			}
		}
	}
}


function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}