<!-- Begin


if (document.images) {


nexton = new Image();
nexton.src = "picts/next-on.gif"

nextoff = new Image();
nextoff.src = "picts/next-off.gif"

backon = new Image();
backon.src = "picts/back-on.gif"

backoff = new Image();
backoff.src = "picts/back-off.gif"

shopon = new Image();
shopon.src = "picts/shop-on.gif"

shopoff = new Image();
shopoff.src = "picts/shop-off.gif"

shop2on = new Image();
shop2on.src = "picts/shop-on2.gif"

shop2off = new Image();
shop2off.src = "picts/shop-off2.gif"

shop3on = new Image();
shop3on.src = "picts/shop-on3.gif"

shop3off = new Image();
shop3off.src = "picts/shop-off3.gif"

shop4on = new Image();
shop4on.src = "picts/shop-on4.gif"

shop4off = new Image();
shop4off.src = "picts/shop-off4.gif"

topon = new Image();
topon.src = "picts/top-on.gif"

topoff = new Image();
topoff.src = "picts/top-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;
}
}

// -->

