﻿var menubarSelected="#e0e0e0";
var menubarNormal="#ebebeb";
var menubarText="#0774bb";

function menubarMenuOnMouseOver(MenuID)
{
    document.getElementById("Menu"+MenuID).style.display="block";
}

function menubarMenuOnMouseOut(MenuID)
{
    document.getElementById("Menu"+MenuID).style.display="none";
}

function menubarCommandOnMouseOver(MenuID,CommandID)
{
    document.getElementById("Menu"+MenuID+"Command"+CommandID+"Title").style.background=menubarSelected;
    document.getElementById("Menu"+MenuID+"Command"+CommandID+"Title").style.color=menubarNormal;    
}

function menubarCommandOnMouseOut(MenuID,CommandID)
{
    document.getElementById("Menu"+MenuID+"Command"+CommandID+"Title").style.background=menubarNormal;
    document.getElementById("Menu"+MenuID+"Command"+CommandID+"Title").style.color=menubarText;
}
