<!-- START

if (document.images) {

<!-- Buttons for the main menu -->
nexton = new Image();
nexton.src = "images/icons/next_on.gif"

nextoff = new Image();
nextoff.src = "images/icons/next_off.gif"

backon = new Image();
backon.src = "images/icons/back_on.gif"

backoff = new Image();
backoff.src = "images/icons/back_off.gif"


<!-- Buttons for the back, next, and home arrows on the gallery and sample scheme pages -->
next2on = new Image();
next2on.src = "images/icons/next2_on.gif"

next2off = new Image();
next2off.src = "images/icons/next2_off.gif"

back2on = new Image();
back2on.src = "images/icons/back2_on.gif"

back2off = new Image();
back2off.src = "images/icons/back2_off.gif"

home2on = new Image();
home2on.src = "images/icons/home2_on.gif"

home2off = new Image();
home2off.src = "images/icons/home2_off.gif"


<!-- Button for the home arrows in the create and compare scheme pages -->
home3on = new Image();
home3on.src = "../ek_colors/images/icons/home3_on.gif"

home3off = new Image();
home3off.src = "../ek_colors/images/icons/home3_off.gif"

}

function img_act(imgName) {
if (document.images) {
imgOn = eval(imgName + "on.src");
document [imgName].src = imgOn;
}
}

function img_inact(imgName) {
if (document.images) {
imgOff = eval(imgName + "off.src");
document [imgName].src = imgOff;
}
}

// END -->