function menuchange_rollover(id1, id2, color, path) {
        if (document.getElementById && document.getElementById(id1))     {
                document.getElementById(id1).style.background = color;
        }
        if (document.getElementById && document.getElementById(id2))     {
                document.getElementById(id2).src = path;
        }
        return true;
}
