//------ OLD Menu mouseover ---------------------------------------

function highlight(divid, stat) {
	var color=(stat==1)?"#1B528C":"#153B63"
	if (document.getElementById) {
		var theDiv = document.getElementById(divid);
		if(theDiv){
		document.getElementById(divid).style.backgroundColor = color;
		}
	}
}




