<!--

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		scotland_01_dumbartonshire_over = newImage("/images/map/scotland-01-dumbartonshire-.gif");
		scotland_01_borders_over = newImage("/images/map/scotland-01-borders-over.gif");
		scotland_01_edinburgh_over = newImage("/images/map/scotland-01-edinburgh-over.gif");
		scotland_01_fife_over = newImage("/images/map/scotland-01-fife-over.gif");
		scotland_01_forth_valley_over = newImage("/images/map/scotland-01-forth-valley-ov.gif");
		scotland_01_tayside_over = newImage("/images/map/scotland-01-tayside-over.gif");
		scotland_01_grampian_over = newImage("/images/map/scotland-01-grampian-over.gif");
		scotland_01_argyll_over = newImage("/images/map/scotland-01-argyll-over.gif");
		scotland_01_lochaber_over = newImage("/images/map/scotland-01-lochaber-over.gif");
		scotland_01_moray_over = newImage("/images/map/scotland-01-moray-over.gif");
		scotland_01_inverness_over = newImage("/images/map/scotland-01-inverness-over.gif");
		scotland_01_skye_over = newImage("/images/map/scotland-01-skye-over.gif");
		scotland_01_ross_over = newImage("/images/map/scotland-01-ross-over.gif");
		scotland_01_caithness_over = newImage("/images/map/scotland-01-caithness-over.gif");
		scotland_01_shetland_over = newImage("/images/map/scotland-01-shetland-over.gif");
		scotland_01_orkney_over = newImage("/images/map/scotland-01-orkney-over.gif");
		scotland_01_western_isles_over = newImage("/images/map/scotland-01-western-isles-o.gif");
		scotland_01_aryshire_over = newImage("/images/map/scotland-01-aryshire-over.gif");
		scotland_01_renfrewshire_over = newImage("/images/map/scotland-01-renfrewshire-ov.gif");
		scotland_01_dumfries_over = newImage("/images/map/scotland-01-dumfries-over.gif");
		scotland_01_glasgow_over = newImage("/images/map/scotland-01-glasgow-over.gif");
		scotland_01_lanarkshire_over = newImage("/images/map/scotland-01-lanarkshire-ove.gif");
		preloadFlag = true;
	}
}

// -->