<!--
// browser test:
bName = navigator.appName;
bVer = parseInt (navigator.appVersion);
if (bName == "Netscape" && bVer >= 3) version = "n3";
else if (bName == "Netscape" && bVer == 2) version = "n2";
else if (bName == "Microsoft Internet Explorer" && bVer >= 3) version = "n3";
else version = "n2";

// end of browser test
// preload universal ../:
// If it is Netscape 3 browser

if (version== "n3")
{
	b1off = new Image(); b1off.src = "images/home_thecollection.gif";
	b1on = new Image(); b1on.src = "images/home_thecollection_on.gif";
	b2off = new Image(); b2off.src = "images/home_aboutartie.gif";
	b2on = new Image(); b2on.src = "images/home_aboutartie_on.gif";
	b3off = new Image(); b3off.src = "../images/about_homebutton.gif";
	b3on = new Image(); b3on.src = "../images/about_homebutton_on.gif";
	b4off = new Image(); b4off.src = "../images/about_collectionbutton.gif";
	b4on = new Image(); b4on.src = "../images/about_collectionbutton_on.gif";
	b5off = new Image(); b5off.src = "../images/coll_home.gif";
	b5on = new Image(); b5on.src = "../images/coll_home_on.gif";
	b6off = new Image(); b6off.src = "../images/coll_about.gif";
	b6on = new Image(); b6on.src = "../images/coll_about_on.gif";
	
}
function hiLite(imgDocID,imgObjName) {
   if (version == "n3") {
       document.images[imgDocID].src = imgObjName;
     }
   }
function hiLiteOff(imgDocID,imgObjName) {
   if (version == "n3") {
       document.images[imgDocID].src = imgObjName;
     }
   }
//-->
