$(function() {
  $("div.region").hide();
  $("map[name='map-regions'] area").hover(
    function(e) {
      $("div.region").hide();
      $("div.region."+$(this).attr("class")).show();
    },
    function(e) {
      $("div.region").hide();
    });
});
