// JavaScript Document

$(document).ready(function(){
   // Use the each() method to gain access to each elements attributes
   $('area').each(function()
   {
      $(this).qtip(
      {
         content: $(this).attr('image'), // Use the ALT attribute of the area map
         style: {
            name: 'white', // Give it the preset dark style
            border: {
               width: 0, 
               radius: 0
            }, 
			 background: 'none',
            tip: false // Apply a tip at the default tooltip corner
         }
      });
   });
    $(".column_des ul li a").click(function(){
   		var index = $(this).attr("href");
		$("#location_detail").find(".active").removeClass("active");
		$("p"+index).addClass("active");
   });
});
