<!--
// check if the browser is Navigator 3 or higher:
agent = navigator.userAgent;
browserVer = 2;
if (agent.substring(0,7) == "Mozilla")
{
    if (parseInt(agent.substring(8,9)) >= 3) {browserVer = 1;}
}

// preload images:
if (browserVer == 1) {

team_on = new Image(127,19);
team_on.src = "/navigation/team_on.gif";
team_off = new Image(127,19);
team_off.src = "/navigation/team_off.gif";

services_on = new Image(127,18);
services_on.src = "/navigation/services_on.gif";
services_off = new Image(127,18);
services_off.src = "/navigation/services_off.gif";

locations_on = new Image(127,18);
locations_on.src = "/navigation/locations_on.gif";
locations_off = new Image(127,18);
locations_off.src = "/navigation/locations_off.gif";

physicians_on = new Image(127,30);
physicians_on.src = "/navigation/physicians_on.gif";
physicians_off = new Image(127,30);
physicians_off.src = "/navigation/physicians_off.gif";

employment_on = new Image(127,18);
employment_on.src = "/navigation/employment_on.gif";
employment_off = new Image(127,18);
employment_off.src = "/navigation/employment_off.gif";

contact_on = new Image(127,19);
contact_on.src = "/navigation/contact_on.gif";
contact_off = new Image(127,19);
contact_off.src = "/navigation/contact_off.gif";

news_on = new Image(127,17);
news_on.src = "/navigation/news_on.gif";
news_off = new Image(127,17);
news_off.src = "/navigation/news_off.gif";

}

function hiLite(imgDocID,imgObjName) {
//  imgDocID - name or number of document image to be replaced
//  imgObjName - name of image object to be swapped in

if (browserVer == 1) {
document.images[imgDocID].src = eval(imgObjName + ".src")
}}


