$(document).ready(function(){
	//add id to default image
	$('#outlookRegions img:first').attr("id", 'noRegion');
	//add behaviour 
	$("#outlookRegions area").mouseover(function(event){
		$('#'+$(this).attr("class")).show();	  
		event.preventDefault();
	});
	$("#outlookRegions area").mouseout(function(event){
		$('#'+$(this).attr("class")).hide();	
		event.preventDefault();
	});
	$("#outlookRegions area").click(function(event){
		switch($(this).attr("class")){
			case "cullercoatsRegion":		
				setAreaCullercoats();
				break;
			case "nitonRegion":
				setAreaNiton();
				break;
			case "portpatrickRegion":
				setAreaPortpatrick();
				break;
		}
		event.preventDefault();
	});
});