<!--
if (document.images) {

// Active Images Main Menu
img01on = new Image();
img01on.src = "images/home03over.gif";
img02on = new Image();
img02on.src = "images/home05over.gif";
img03on = new Image();
img03on.src = "images/home06over.gif";
img04on = new Image();
img04on.src = "images/home07over.gif";

// Inactive Images Main Menu
img01off = new Image();
img01off.src = "images/home03.gif";
img02off = new Image();
img02off.src = "images/home05.gif";
img03off = new Image();
img03off.src = "images/home06.gif";
img04off = new Image();
img04off.src = "images/home07.gif";
}

// Function to 'activate' images.
function imgOn(imgName) {
if (document.images) {
document[imgName].src = eval(imgName + "on.src");
}
}

// Function to 'deactivate' images.
function imgOff(imgName) {
if (document.images) {
document[imgName].src = eval(imgName + "off.src");
}
}
// -->

