$(document).ready(function() {
  $("area").each(function() {
    var id = $(this).attr('rel');
    $(this).qtip({
      position: {
        corner: {
          target: 'topRight',
          tooltip: 'bottomLeft'
        }
      },
      content: {
        text: $('#' + id).html(),
      },
      style: {
        tip: true,
        border: {
          width: 1,
          radius: 5
        },
        name: 'light'
      },
      show: 'click',
      hide: 'unfocus'
    });
  });
});

