<!--- hide script from old browsers

// browser test:

if (document.images) version = "1";
else version = "2";

// preload images:
if (version == "1") {

button1 = new Image;
button1.src = "images/button.png";

button2 = new Image;
button2.src = "images/button2.png";

button3 = new Image;
button3.src = "images/button3.png";

}
else {
button_main_1 = "";
button_main_2 = "";
button_main_3 = "";
}

function hiLite(imgDocID,imgObjName) {
if (version == "1") {
document.images[imgDocID].src = eval(imgObjName + ".src")
}}

// end hiding --->