var m,n;
function hover(m,n,x){
	if (x==1){
	document.getElementById(n).style.backgroundColor='#FEF3CC'; 
	}
	else {
	document.getElementById(n).style.backgroundColor='#FEF3CC'; 
	//document.getElementById(n).style.border='1px solid #73727D';
	//document.getElementById(n).style.borderLeft='1px solid #73727D';
	//document.getElementById(n).style.borderRight='1px solid #73727D';
	//document.getElementById(n).style.borderTop='4px solid #FFC20E';
	document.getElementById(n).style.cursor='hand';
	//document.getElementById(m).style.color='#AEAEAE';
	}
}

function out(m,n,x){
	if (x==1){
	document.getElementById(n).style.backgroundColor='#FFF9E5'; 
	document.getElementById(m).style.color='#000';
	}
	if (x==2){
	document.getElementById(n).style.backgroundColor='#FEE180'; 
	document.getElementById(m).style.color='#000';
	}
	if (x==3){
	document.getElementById(n).style.backgroundColor='#FDEDB5'; 
	document.getElementById(m).style.color='#979797';
	}
	else {
	document.getElementById(n).style.backgroundColor=''; 
	//document.getElementById(n).style.borderBottom='1px solid #73727D';
	//document.getElementById(n).style.borderTop='1px solid #FFFFFF';
	//document.getElementById(n).style.borderTop='4px solid #FFFFFF';
	//document.getElementById(n).style.borderLeft='1px solid #FFFFFF';
	//document.getElementById(n).style.borderRight='1px solid #FFFFFF';
	//document.getElementById(m).style.color='';
	document.getElementById(n).style.cursor='arrow';
	}
}


function khover(x,n){
	if (n=="itemheader"){
	document.getElementById(n).style.backgroundImage="url(img/menu/historiebuttBG_.png)"; 
	}
	else if (n=="anfahrt"){
	document.getElementById(n).style.backgroundImage="url(img/menu/anfahrtbuttBG_.png)"; 
	}
	else {
	document.getElementById(n).style.backgroundImage="url(img/menu/kontaktbuttBG_.png)"; 
	}
}

function kout(x,n){
	if (n=="itemheader"){
		document.getElementById(n).style.backgroundImage="url(img/menu/historiebuttBG.png)"; 
		}
	else if (n=="anfahrt"){
	document.getElementById(n).style.backgroundImage="url(img/menu/anfahrtbuttBG.png)"; 
	}
	else {
	document.getElementById(n).style.backgroundImage="url(img/menu/kontaktbuttBG.png)"; 
	}
}
