﻿// JScript File
var prevHighlightedLabel;
var prevHighlightedIcon;

function highlightMapCity(city)
{
    var curLabel = "lnkMapLabel" + city;
    var curIcon = "imgMapIcon" + city;
    if (city == "Showcase")
    {
        curIcon = "imgMapIconColumbus";
    }
    if (prevHighlightedLabel)
    {
        document.getElementById(prevHighlightedLabel).style.fontWeight = "Normal";
    }
    if (prevHighlightedIcon)
    {
        document.getElementById(prevHighlightedIcon).src = "images/HomePage/map-location.png";
    }
    document.getElementById(curLabel).style.fontWeight = "Bold";
    prevHighlightedLabel = curLabel;
    document.getElementById(curIcon).src = "images/HomePage/map-location-hover.png";
    prevHighlightedIcon = curIcon;
}
