// JavaScript Document
function change_image (region) {
	var ShowItem = document.getElementById("county_image");
	var LinkItem = document.getElementById("county_" + region);
	ShowItem.style.backgroundImage = 'url(/fileadmin/templates/images_lay/mallorca-karte/Region-' + region + '.gif)';
	LinkItem.style.textDecoration = "underline";
	return true;
}

function hide_image (region) {
	var ShowItem = document.getElementById("county_image");
	var LinkItem = document.getElementById("county_" + region);
	ShowItem.style.backgroundImage = 'url(/fileadmin/templates/images_lay/mallorca-karte/none.gif)';
	LinkItem.style.textDecoration = "none";
	return true;
}
