// mouseover Sekundärnavigation - Unterpunkte
var act = 1;
function over01(x){
	if(document.all) x.style.cursor = "hand";
	else x.style.cursor = "pointer";

	if(x.className=="seknavi-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 -36px";
//	x.style.background-color = "#CBCBCB";
//	x.style.color="#000000";
}

function out01(x){
	if(act==0) return;
	x.style.backgroundPosition = "0px 0px";
//	x.style.background-color = "#DDDDDD";
//	x.style.color="#000000";
}

function link(x){ 
document.location.href = x;
}

function year(){ 
var j = new Date(); var y = j.getFullYear(); document.write(y);
}

function openlayer(x) {
//	all.style.visibility = "hidden";
	x.style.visibility = "visible";
}

function closelayer(x) {
	x.style.visibility = "hidden";
}


