// JavaScript Document

jQuery(document).ready(function() {
	
	jQuery('#product_image_map').find('area').each(function(){
		$state = jQuery(this).attr('alt');	    
		
		jQuery(this).attr('title', $state);	   
		
		jQuery(this).attr('href', "javascript:show_map_data('" + $state + "')");	   
	});

});

function show_map_data($location){
	
	jQuery.ajax({
		type: "GET",
		url: "product_data.php",
		data: "state=" + $location,
		dataType: "html",
		success: function(html_reponse){
			
			
			jQuery('#product_data').html(html_reponse);// $testimonials);
			$testimonials = jQuery('#product_data').find('#testimonials').html();
			
			jQuery('#testimonials').html($testimonials);
		}
	});
	
}

