<!--

function blockError(){return true;}
window.onerror = blockError;



// MOUSEOVER EFFECTS



if (document.images) {


button10on = new Image();
button10on.src = "menu/button10-on.gif"

button10off = new Image();
button10off.src = "menu/button10-off.gif"

button9on = new Image();
button9on.src = "menu/button9-on.gif"

button9off = new Image();
button9off.src = "menu/button9-off.gif"

button8on = new Image();
button8on.src = "menu/button8-on.gif"

button8off = new Image();
button8off.src = "menu/button8-off.gif"

button7on = new Image();
button7on.src = "menu/button7-on.gif"

button7off = new Image();
button7off.src = "menu/button7-off.gif"

button6on = new Image();
button6on.src = "menu/button6-on.gif"

button6off = new Image();
button6off.src = "menu/button6-off.gif"

button5on = new Image();
button5on.src = "menu/button5-on.gif"

button5off = new Image();
button5off.src = "menu/button5-off.gif"

button4on = new Image();
button4on.src = "menu/button4-on.gif"

button4off = new Image();
button4off.src = "menu/button4-off.gif"

button3on = new Image();
button3on.src = "menu/button3-on.gif"

button3off = new Image();
button3off.src = "menu/button3-off.gif"

button2on = new Image();
button2on.src = "menu/button2-on.gif"

button2off = new Image();
button2off.src = "menu/button2-off.gif"

button1on = new Image();
button1on.src = "menu/button1-on.gif"

button1off = new Image();
button1off.src = "menu/button1-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;
}
}


// -->