
if (document.images) {
buttonUp = new Image(); buttonUp.src = "images/menu_bg1.jpg"; // Never use bitmaps for the web.
buttonDown = new Image(); buttonDown.src = "images/menu_bg_over1.jpg";
}

function turn_off(cell) {
if (document.images != null) {
cell.style.backgroundImage = "url('" + buttonUp.src + "')";
}
}

function turn_on(cell) {
if (document.images != null) {
cell.style.backgroundImage = "url('" + buttonDown.src + "')";
}
}

