/* ########################################### //
// ########################################### //
// ########################################### //
//                                             //
//  All rights reserved to alex@deltamods.com  //
//                                             //
// ########################################### //
// ########################################### //
// ########################################### */

if (!document.getElementById)
    document.getElementById = function() { return null; }

function initializeMenu(menuId, actuatorId, param) {
    var menu = document.getElementById(menuId);
    var actuator = document.getElementById(actuatorId);

    if (menu == null || actuator == null) return;

    actuator.parentNode.style.backgroundImage = (param==1) ? "url(menu/plus.gif)" : "url(menu/minus.gif)";
    actuator.onclick = function() {
        var display = menu.style.display;
        this.parentNode.style.backgroundImage =
            (display == "block") ? "url(menu/plus.gif)" : "url(menu/minus.gif)";
        menu.style.display = (display == "block") ? "none" : "block";

        return false;
    }
}



