<!--

function white(linkid,imgid) {
var link = document.getElementById(linkid);
var bild = document.getElementById(imgid);
  if (link) { link.style.color='#FFFFFF';  }
  if (bild) { bild.style.borderColor='#EAEAEA'; }
}

function whiteOut(linkid,imgid) {
var link = document.getElementById(linkid);
var bild = document.getElementById(imgid);
  if (link) { link.style.color='';  }
  if (bild) { bild.style.borderColor='#B1B1B1'; }
}

function showcat(id) { 
var obj = document.getElementById(id);

if (obj) {
	obj.style.color = '#000000';
	obj.style.fontWeight = 'bold';
	}
}

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;


//-->