

$(document).ready(function() {
  assignMapHoverEvents();
}); 

var g_current = 'UNDEFINED';

function assignMapHoverEvents() {
  $("a.mapHoverItem").hover(function() {
     var l_href = this.href;
     l_href = l_href.split('#')[1];
     if (l_href != g_current) {
       $("a#" + g_current + "").parent().hide();
       $("a#" + g_current + "2").parent().hide();
       $("a#" + l_href + "").parent().show();
       $("a#" + l_href + "2").parent().show();
     }
     g_current = l_href;
  },function() {
     return false;
  });
  $("a.location").click(function() {
     return false;
    });
  }

