$(function()
{
  $("area").hover(function()
  {
    var img = $(this).attr("href").split("/");
    img = img[img.length - 1].replace(/\.htm/, "");
    
    $("#locations-left div").hide();
    $("#" + img).show();
  }, function()
  {
    $("#locations-left div").hide();
    $("#blank").show();
  });
  
  Shadowbox.setup($("area"), {
    height: 500,
    width: 500
  });
});