function bildpop(verweis,x,y,status) 
{ 
popup = window.open(verweis, "Zweitfenster", "width="+ x + ",height="+ y + ",status="+ status); 
popup.focus(); 
}

function rootmenue_over(id) {
	
	document.getElementById(id).style.backgroundColor = '#712229';
	document.getElementById(id).style.cursor='pointer';
}

function rootmenue_out(id) {
	
	document.getElementById(id).style.backgroundColor = '#A5CB29';
	
}

function submenue_over(id) {
	
	document.getElementById(id).style.backgroundColor = '#862C37';
	document.getElementById(id).style.cursor='pointer';
	// document.getElementById(id).style.background = 'url(../img/mkm_subbutton_back.gif)';
}

function submenue_out(id) {
	
	document.getElementById(id).style.backgroundColor = '#A5CB29';
	document.getElementById(id).style.cursor='pointer';
	document.getElementById(id).style.background = 'url(../img/mkm_subbutton_back.gif)';
}
