/* Rollover */
var backgroundColor_over = "#E6E6E6";
var foregoundColor_over = "#FFFFFF";
/* Standard */
var backgroundColor = "#F8F8F8";
var foregoundColor = "#FFFFFF";
/* Rollover active */
var backgroundColor_active = "#F8F8F8";
var foregoundColor_active = "#CC0066";

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;
	}
}
