function high(LinkObject)
{
	LinkObject.style.background='rgb(182,189,210)';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='0px';
	LinkObject.style.borderColor='rgb(19,44,112)';
}

function low(LinkObject)
{
	LinkObject.style.background='rgb(249,248,247)';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='0px';
	LinkObject.style.borderColor='rgb(19,44,112)';
}

function high2(LinkObject)
{
	LinkObject.style.background='rgb(182,189,210)';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='1px';
	LinkObject.style.borderColor='rgb(19,44,112)';
}

function low2(LinkObject)
{
	LinkObject.style.background='rgb(249,248,247)';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='1px';
	LinkObject.style.borderColor='rgb(221,221,221)';
}
function low3(LinkObject)
{
	LinkObject.style.background='rgb(255,204,0)';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='1px';
	LinkObject.style.borderColor='rgb(221,221,221)';
}

function getElementByClass(theClass) {
	var allHTMLTags=document.getElementsByTagName("*");
	for (i=0; i<allHTMLTags.length; i++) {
		if (allHTMLTags[i].className==theClass) {
			return allHTMLTags[i];
		}
	}
}

if(window.navigator.systemLanguage && !window.navigator.language) {
	function hoverIE() {
		var LI = getElementByClass("Navigation").firstChild;
		do {
			if(sucheUL(LI.firstChild)) {
				LI.onmouseover=einblenden;
				LI.onmouseout=ausblenden;
			}
			LI = LI.nextSibling;
		}
		while(LI);
	}
	
	function sucheUL(UL) {
		do {
			if(UL) UL = UL.nextSibling;
			if(UL && UL.nodeName == "UL") return UL;
		}
		while(UL);
		return false;
	}
	
	function einblenden() {
		var UL = sucheUL(this.firstChild);
		UL.style.display = 'block';
	}
	
	function ausblenden() {
		sucheUL(this.firstChild).style.display = "none";
	}
	
	window.onload=hoverIE;
}
