/* Rollover Colours */
var backgroundColor_over = "#999999";
var foregoundColor_over = "#FFFFFF";
/* Standard Colours */
var backgroundColor = "#FFFFFF";
var foregoundColor = "#0000cc";
/* Rollover Colours for active Menüpunkt */
var backgroundColor_active = "#FFFFFF";
var foregoundColor_active = "#CC0000";

function MenuOver(num) {
	document.getElementById("menu"+num+"_1").style.backgroundColor = backgroundColor_over;
	document.getElementById("menu"+num+"_1").style.color = foregoundColor_over;
	document.getElementById("menu"+num+"_2").style.backgroundColor = backgroundColor_over;
	document.getElementById("menu"+num+"_2").style.color = foregoundColor_over;
}

function MenuOut(num,active) {
	if (active == 1) {
		document.getElementById("menu"+num+"_1").style.backgroundColor = backgroundColor_active;
		document.getElementById("menu"+num+"_1").style.color = foregoundColor_active;
		document.getElementById("menu"+num+"_2").style.backgroundColor = backgroundColor_active;
		document.getElementById("menu"+num+"_2").style.color = foregoundColor_active;
	} else {
		document.getElementById("menu"+num+"_1").style.backgroundColor = backgroundColor;
		document.getElementById("menu"+num+"_1").style.color = foregoundColor;
		document.getElementById("menu"+num+"_2").style.backgroundColor = backgroundColor;
		document.getElementById("menu"+num+"_2").style.color = foregoundColor;
	}
}
