window.onload = function() {
	// MENU
	document.getElementById("ma1").onmouseover = function() { document.getElementById("mi1").style.backgroundColor = "#B30307"; };
	document.getElementById("ma1").onmouseout  = function() { document.getElementById("mi1").style.backgroundColor = "#545454"; };
	document.getElementById("ma2").onmouseover = function() { document.getElementById("mi2").style.backgroundColor = "#B30307"; };
	document.getElementById("ma2").onmouseout  = function() { document.getElementById("mi2").style.backgroundColor = "#545454"; };
	document.getElementById("ma3").onmouseover = function() { document.getElementById("mi3").style.backgroundColor = "#B30307"; };
	document.getElementById("ma3").onmouseout  = function() { document.getElementById("mi3").style.backgroundColor = "#545454"; };
	document.getElementById("ma4").onmouseover = function() { document.getElementById("mi4").style.backgroundColor = "#B30307"; };
	document.getElementById("ma4").onmouseout  = function() { document.getElementById("mi4").style.backgroundColor = "#545454"; };
	document.getElementById("ma5").onmouseover = function() { document.getElementById("mi5").style.backgroundColor = "#B30307"; };
	document.getElementById("ma5").onmouseout  = function() { document.getElementById("mi5").style.backgroundColor = "#545454"; };
	document.getElementById("ma6").onmouseover = function() { document.getElementById("mi6").style.backgroundColor = "#B30307"; };
	document.getElementById("ma6").onmouseout  = function() { document.getElementById("mi6").style.backgroundColor = "#545454"; };
}

