/* 
 * 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(http://de.goldannonces.com/images/img/im' + region + '.png)';
	/*LinkItem.style.textDecoration = "none"; */
	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(http://de.goldannonces.com/images/img_transparent.gif)';
	/*LinkItem.style.textDecoration = "none";*/
	return true;
}
function colorer(region){
	var vill=document.getElementById(region);
	vill.style.color="#000000";
	vill.style.background="#EFCA33";
	vill.style.fontWeight="normal";
	return true;
}
function non_colorer(region){
	var vill=document.getElementById(region);
	
	vill.style.background="#ffffff";
	vill.style.fontWeight="normal";
	return true;
}


