<!--
if (document.images) {

about_off = new Image();
about_off.src = "img/menu_about_n.gif";
about_on = new Image();
about_on.src = "img/menu_about_r.gif";    

search_off = new Image();
search_off.src = "img/menu_search_n.gif";
search_on = new Image();
search_on.src = "img/menu_search_r.gif";    

employers_off = new Image();
employers_off.src = "img/menu_employers_n.gif";
employers_on = new Image();
employers_on.src = "img/menu_employers_r.gif";    

candidates_off = new Image();
candidates_off.src = "img/menu_candidates_n.gif";
candidates_on = new Image();
candidates_on.src = "img/menu_candidates_r.gif";    

contact_off = new Image();
contact_off.src = "img/menu_contact_n.gif";
contact_on = new Image();
contact_on.src = "img/menu_contact_r.gif";   
}
function hiLite(imgDocID,imgObjName) {
	if (document.images) {
		document.images[imgDocID].src = eval(imgObjName + ".src")
	}
}
//-->