function MainMover(wert){
	var mc=document.getElementById(wert).className;
	if(mc=="submenuTextPA"){
		document.getElementById(wert).className="submenuTextMO";
	}
}
function MainMout(wert){
	var mc=document.getElementById(wert).className;
	if(mc=="submenuTextMO"){
		document.getElementById(wert).className="submenuTextPA";
	}
}
function SubSubMover(wert){
	var mc=document.getElementById(wert).className;
	if(mc=="subsubbuttonPA"){
		document.getElementById(wert).className="subsubbuttonMO";
		document.getElementById(wert+'Lay').className="subsuboverlayMO";
	}
}
function SubSubMout(wert){
	var mc=document.getElementById(wert).className;
	if(mc=="subsubbuttonMO"){
		document.getElementById(wert).className="subsubbuttonPA";
		document.getElementById(wert+'Lay').className="subsuboverlay";
	}
}
function goTo(url){
	document.location.href=url;	
}
