﻿

///Function to assist in the changing of image icons on menu rollovers.
function mmuSetIcon(_IconName, _ImgPath)
{
    document.getElementById(_IconName).src = _ImgPath;
}

function mmuMouseOver(_mmuName)
{
    document.getElementById(_mmuName).setAttribute("className", "ToolbarLinkMouseOver");
    document.getElementById(_mmuName).setAttribute("class", "ToolbarLinkMouseOver");
}

function mmuMouseOut(_mmuName)
{
    document.getElementById(_mmuName).setAttribute("className", "ToolbarLink");
    document.getElementById(_mmuName).setAttribute("class", "ToolbarLink");
}



