var currentMenu = null;
var currentActuator = null;

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

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

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

//* actuator.onclick = function() {
//*		if (currentMenu == null) {
//*            this.showMenu();
//*        }
//*        else {
//*            currentMenu.style.visibility = "hidden";
//*            currentMenu = null;
//*        }
//*                return false;
//*
//*   }
  
	actuator.onmouseover = function() {
        if (currentActuator == null) {
			this.showButton();
		} else {
		   currentActuator.style.background = "#3D79E1";
           currentActuator.style.bottom = "14px";
           currentActuator = null;
           this.showButton();

		}
		if (currentMenu == null) {
            this.showMenu();
        }
        else {
            currentMenu.style.visibility = "hidden";
            currentMenu = null;
            this.showMenu();
        }
        return false;
    }

    actuator.showMenu = function() {
        menu.style.left = this.offsetLeft + "px";
        menu.style.top = this.offsetTop + this.offsetHeight + "px";
        menu.style.visibility = "visible";
        currentMenu = menu;
    }
    actuator.showButton = function() {
		actuator.style.background = "#68B1FF";
        actuator.style.right = "1px";
        actuator.style.bottom = "12px";
        currentActuator = actuator;
    }

}

function styleit() { 
if (currentMenu != null) {
currentMenu.style.visibility = "hidden";
currentActuator.style.background = "#3D79E1";
currentActuator.style.right = '2px';currentActuator.style.bottom = "14px";
}
}
