
DefaultIndex = 1;

function MyClick(URLString)
{
    location.href = URLString;
}

function MyMouseOver(MenuIndex)
{
    IdName = "MenuItem" + MenuIndex;
    MyCell = document.getElementById(IdName);
    MyCell.style.color = (MenuIndex == DefaultIndex) ? "violet" : "red";
}

function MyMouseOut(MenuIndex)
{
    IdName = "MenuItem" + MenuIndex;
    MyCell = document.getElementById(IdName);
    MyCell.style.color = (MenuIndex == DefaultIndex) ? "blue" : "black";
}

function MyOnLoad(MenuIndex)
{
    DefaultIndex = MenuIndex;

    IdName = "MenuItem" + MenuIndex;
    MyCell = document.getElementById(IdName);
    MyCell.style.color = "blue";
}
