<!--

if (document.images) {
	scotlandon = new Image(); scotlandon.src = "../images/imagemap/map_united_kingdom_scotland.jpg";
	northernirelandon = new Image(); northernirelandon.src = "../images/imagemap/map_united_kingdom_northern_ireland.jpg";
	yorkshireon = new Image(); yorkshireon.src = "../images/imagemap/map_united_kingdom_yorkshire.jpg";
	northweston = new Image(); northweston.src = "../images/imagemap/map_united_kingdom_north_west.jpg";
	northeaston = new Image(); northeaston.src = "../images/imagemap/map_united_kingdom_north_east.jpg";
	waleson = new Image(); waleson.src = "../images/imagemap/map_united_kingdom_wales.jpg";
	westmidlandson = new Image(); westmidlandson.src = "../images/imagemap/map_united_kingdom_west_midlands.jpg";
	eastmidlandson = new Image(); eastmidlandson.src = "../images/imagemap/map_united_kingdom_east_midlands.jpg";
	eastofenglandon = new Image(); eastofenglandon.src = "../images/imagemap/map_united_kingdom_east_of_england.jpg";
	southweston = new Image(); southweston.src = "../images/imagemap/map_united_kingdom_south_west.jpg";
	southeaston = new Image(); southeaston.src = "../images/imagemap/map_united_kingdom_south_east.jpg";
	londonon = new Image(); londonon.src = "../images/imagemap/map_united_kingdom_london.jpg";
	areaoff = new Image(); areaoff.src = "../images/imagemap/map_united_kingdom.jpg";
}

function rollOn(img1){
	if (document.images) {
		document.images.areas.src=eval(img1 + "on.src");
	}

}

function rollOff(){
    window.status = "";	
	if (document.images) {
		document.images.areas.src=areaoff.src;
	}
}

//-->