function preload_image(_image) {
	var image = new Image;
	image.src = _image;
}

function change_image(region) {
	var ShowItem = document.getElementById("area_image");
	var LinkItem = document.getElementById("county_" + region);
	ShowItem.style.backgroundImage = 'url(/catalog/images3/map_' + region + '.gif)';
	LinkItem.style.textDecoration = "underline";
	LinkItem.style.color="#FB0303";
	return true;
}

function hide_image(region) {
	var ShowItem = document.getElementById("area_image");
	var LinkItem = document.getElementById("county_" + region);
	ShowItem.style.backgroundImage = 'url(/catalog/images3/none.gif)';
	LinkItem.style.textDecoration = "none";
	LinkItem.style.color="#000000";
	return true;
}
