﻿$(document).ready(function()
{
    $(".imgMap area").hover(
        function()
        {
            var stateName = $(this).attr("alt");
            $("#selState").hide();
            $("#selState").html(stateName);
            $("#selState").show();
        },
        function()
        {
            $("#selState").hide();
            $("#selState").html("");
        }
    );
});

