// mouseover meyer-topnavigation
var act = 1;
function over01(x){
	if(document.all) x.style.cursor = "hand"; 
	else x.style.cursor = "pointer"; 
		
	if(x.className=="high"){
		act = 0;
		return;
	}
	else{
		act = 1;
	}
	if(!x.childNodes) return;
	if(x.childNodes[0].innerHTML) x.innerHTML=x.childNodes[0].innerHTML;
	x.style.backgroundPosition = "0px -35px";
	x.style.color="#ffffff";
}

function out01(x){
	if(act==0) return;
	x.style.backgroundPosition = "0px 0px";
	x.style.color="#ffffff";
}



// mouseover meyer-leftnavigation
function over02(x){
	if(document.all) x.style.cursor = "hand"; 
	else x.style.cursor = "pointer"; 
	

	if(!x.style) return;
	oldcolor = x.style.backgroundColor;
	x.style.backgroundColor="#DCDCDC";
}

function out02(x){
	if(!x.style) return;
	x.style.backgroundColor=oldcolor;
}

//topnavigation & leftnavigation
function linkme(x){
if(x) document.location.href = x;
else document.location.href = "#";
}




