$(document).ready(function() {


$('area').cluetip({
	width: '105px', showTitle: false,
	local:true, 
	cursor: 'pointer', 
	sticky:true, 
	mouseOutClose:true,
	positionBy: 'bottomTop', 
	topOffset:3,
	dropShadowSteps:3,
	attribute:'class',
	localPrefix:'#'
  });

	$('area').attr("alt", "");
	$('#ukMap img').attr("alt", "");
  
  	//  make ajax calls for map info
  	$('#cluetipLinks a, area').click(function(e) {
		$(".content").load("info/"+$(this).attr('href').split('county=')[1]+".asp");
		e.preventDefault();
	});
});