function Change_menu_colors() {
// ------------------------------------------------------------------------------------
// Level 2
var el = document.getElementById('tbl_menu').getElementsByTagName('div');
count=1;
for (i in el) {
	if(el[i].className=="L2") {
		el[i].className="L2 Custom2";
		el[i].style.backgroundColor=eval("backgroundcolor"+count);
		count++;
	}
}

el = document.getElementById('tbl_menu').getElementsByTagName('a');
first=true;
count=1;
for (i in el) {
	if(el[i].className=="L2") {
		el[i].className="L2 Custom2";
		el[i].style.backgroundColor=eval("backgroundcolor"+count);
		count++;
	}
}

var el = document.getElementById('tbl_menu').getElementsByTagName('td');
count=1;
for (i in el) {
	if(el[i].className=="c2") {
		el[i].className="c2 c_Custom2";
		count++;
	}
}
}