/*
 * Index.js
 */

/* 
 * Preload onmouseover images
 */
function preload_image(_image) {
	var image = new Image;
	image.src = _image;
}

/* 
 * Change county image onmouseover on index page 
 */
function change_image(region) {
	var ShowItem = document.getElementById("area_image");
	var LinkItem = document.getElementById("county_" + region);
	ShowItem.style.backgroundImage = 'url(/images3/map_' + region + '.gif)';
	LinkItem.style.textDecoration = "underline";
	LinkItem.style.color = "#FB0303";	
	return true;
}

/* 
 * Change back county image onmouseout on index page
 */ 
function hide_image(region) {
	var ShowItem = document.getElementById("area_image");
	var LinkItem = document.getElementById("county_" + region);
	ShowItem.style.backgroundImage = 'url(/images3/none.gif)';
	LinkItem.style.textDecoration = "none";
	LinkItem.style.color = "#000000";		
	return true;
}