//<!--
var ShownInfoId = "";

function HideAltText(elementId)
{
    var element = document.getElementById(elementId);
    element.setAttribute('alt', '')
}

function ToggleTooltip(country, displayStyle)
{
    var tooltip = document.getElementById(country + 'Tooltip');
    tooltip.style.display = displayStyle;
}

function ToggleTableRow(country, rowClass)
{
    var tooltip = document.getElementById(country + 'TableRow');
    tooltip.className = rowClass;
}

function MouseOver(country)
{
    if (ShownInfoId != "")
    {
        Close(ShownInfoId);
    }

    HideAltText(country);
    ToggleTooltip(country, 'block');
    ToggleTableRow(country, 'highlight');
    ShownInfoId = country;
}

function Close(country)
{
    ToggleTooltip(country, 'none');
    ToggleTableRow(country, 'tableRow');
}

window.onload = function()
{
	HideAltText('NearestSupplierImage');
}
//-->