<!--

//new browser test
agent = navigator.userAgent;
browserVer = (agent.indexOf("Mozilla/3") == -1 &&
		agent.indexOf("Mozilla/4") == -1 &&
		agent.indexOf("Mozilla/5") == -1) ? 0 : 1;

// - - - - - - - - - - - - - - - 

if (browserVer == 1) {
                
	    nav_who = new Image(104,16);
		nav_who.src = "images/nav/nav_who_off.gif";       
		nav_who_on = new Image(104,16);
		nav_who_on.src = "images/nav/nav_who_in.gif";
                
	    nav_what = new Image(105,16);
		nav_what.src = "images/nav/nav_what_off.gif";       
		nav_what_on = new Image(105,16);
		nav_what_on.src = "images/nav/nav_what_in.gif";
                
	    nav_join = new Image(118,16);
		nav_join.src = "images/nav/nav_join_off.gif";       
		nav_join_on = new Image(118,16);
		nav_join_on.src = "images/nav/nav_join_in.gif";
                
	    nav_contact = new Image(100,16);
		nav_contact.src = "images/nav/nav_contact_off.gif";       
		nav_contact_on = new Image(100,16);
		nav_contact_on.src = "images/nav/nav_contact_in.gif";

}

// - - - - - - - - - - - - - - - 

function hiLite(imgDocID,imgObjName) {

// manages mouseOver animations

//   imgDocID - the name or number of the document image to be replaced

//   imgObjName - the name of the image object to be swapped in

if (browserVer == 1) {

document.images[imgDocID].src = eval(imgObjName + ".src")

}}

// -->

