
var count_menu = 6;
var menu_images  = new Array();

for (i=1; i<=count_menu; i++) {
    menu_images[i]     = new Image();
    menu_images[i].src = "images/menu/"+i+"on.gif";
}

function menu_on (id)
{
    if (document.getElementById) {
        if (document.getElementById("menu"+id)) {
            document.getElementById("menu"+id).src = "images/menu/"+id+"on.gif";
            document.getElementById("menu"+id).style.backgroundColor = "#E20177";
        }
    }
}

function menu_off (id)
{
    if (document.getElementById) {
        if (document.getElementById("menu"+id)) {
            document.getElementById("menu"+id).src = "images/menu/"+id+"off.gif";
            document.getElementById("menu"+id).style.backgroundColor = "#D8E3E9";
        }
    }
}
