﻿
// FILE LINKED WITH HRINSURANCE FOLDER

var currentMenuID = 0;
var gTimeOut = null;

function displayMenu(id) {
	if (currentMenuID) forceHideMenu(currentMenuID);
	elm('divMenu' + id).style.display = "block";
	elm('divMenu' + id).style.left = getLocation(elm("button" + id), "X") + 6 + "px";
	elm('divMenu' + id).style.top = getLocation(elm("button" + id), "Y") + 28 + "px";
	elm('button' + id).childNodes[0].style.backgroundPosition = "0px -35px";
	currentMenuID = id;
}

function hideMenu(id) {
	gTimeOut = window.setTimeout("forceHideMenu(" + id + ")", 1000);
}

function forceHideMenu(id) {
	elm('divMenu' + id).style.display = "none";
	elm('button' + id).childNodes[0].style.backgroundPosition = "0px 0px";
}

function cancelHideMenu(id) {
	if (gTimeOut) window.clearTimeout(gTimeOut);
}


