browser = (((navigator.appName == "Netscape") &&
(parseInt(navigator.appVersion) >= 3 )) || ((navigator.appName ==
"Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 3 )))



// preload universal images:
if (browser){
off1 = new Image(96,37);
off1.src= "images/nav1off.gif";
on1 = new Image(96,37);
on1.src= "images/nav1on.gif";

off2 = new Image(68,37);
off2.src= "images/nav2off.gif";
on2 = new Image(68,37);
on2.src= "images/nav2on.gif";

off3 = new Image(51,37);
off3.src= "images/nav3off.gif";
on3 = new Image(51,37);
on3.src= "images/nav3on.gif";

off4 = new Image(90,37);
off4.src= "images/nav4off.gif";
on4 = new Image(90,37);
on4.src= "images/nav4on.gif";

off5 = new Image(90,37);
off5.src= "images/nav5off.gif";
on5 = new Image(90,37);
on5.src= "images/nav5on.gif";

off6 = new Image(125,37);
off6.src= "images/nav6off.gif";
on6 = new Image(125,37);
on6.src= "images/nav6on.gif";

off7 = new Image(146,37);
off7.src= "images/nav7off.gif";
on7 = new Image(146,37);
on7.src= "images/nav7on.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 (browser){document.images[imgDocID].src = eval(imgObjName + ".src")
}}

// -->