$(document).ready(function() {
  $('area').each(function()
   {
      $(this).qtip(
      {
         content: $('#'+$(this).attr('id')+'_tip').html(), // Use the ALT attribute of the area map
         style: {
            name: 'dark', // Give it the preset dark style
            border: {
               width: 0, 
               radius: 4 
            },
			width: { min: 400 },
            tip: true // Apply a tip at the default tooltip corner
         }
      });
   });
});
