/*******************************************************************************
	menuhighlite.js
*******************************************************************************/

/*
	For the left menu in each agency's pages:
	Highlight the font for the menu items when going over
	and restore after moving out.
*/

//<!--

// old way: changed color of background 
// (pb: highlights also on clickable areas)
function movein(which){
	which.style.background='#01669A';
}

function moveout(which){
	which.style.background='#77AAD5';
}

// new way
function highlite() { 
	var theitem; 
	theitem = window.event.srcElement; 
	theitem.style.color = "#335375"; 
} 

function unhighlite() { 
	var theitem; 
	theitem = window.event.srcElement; 
	theitem.style.color = "white"; 
} 

//-->
