function GetFilename() {
	var arrPath = window.location.pathname.split("/");
	return arrPath[arrPath.length - 1];
}

function RewriteMenuLevel(nLevel, strColor, strImage) {
	var strFilename = GetFilename();
	$("#mhd1_" + nLevel + "_c a").css("background-color", strColor);
	$arrLinks = $("#mhd1_" + nLevel + "_c a");
	$arrLinks.each( function(nIndex) {
		$("#mhd1_" + nLevel + "_" + nIndex + "_c").remove();
	});
}

function SitooMenuRewriter() {
	var arrColors	= ["#d5bedb", "#dbecc8", "#ffedaf", "#d3d1e7", "#f9d5df"];

	RewriteMenuLevel(0, arrColors[0], "img/__sitoo/start.png");
	RewriteMenuLevel(1, arrColors[1], "img/__sitoo/laromedel.png");
	RewriteMenuLevel(2, arrColors[2], "img/__sitoo/kurser.png");
	RewriteMenuLevel(3, arrColors[3], "img/__sitoo/traffaoss.png");
	RewriteMenuLevel(4, arrColors[4], "img/__sitoo/omalfamax.png");
}
