// List of images used in document by fnMapOver and fnMapOut functions
if (document.images) {
	coin_restoreMap			= new Image(); coin_restoreMap.src			= "images/theEuro_map/22.gif";
	text_restoreMap			= new Image(); text_restoreMap.src			= "images/theEuro_map/32.gif";
	coin_austria			= new Image(); coin_austria.src				= "images/theEuro_map/22_austria_ro.gif";
	coin_belgium			= new Image(); coin_belgium.src				= "images/theEuro_map/22_belgium_ro.gif";
	coin_finland			= new Image(); coin_finland.src				= "images/theEuro_map/22_finland_ro.gif";
	coin_france				= new Image(); coin_france.src				= "images/theEuro_map/22_france_ro.gif";
	coin_germany			= new Image(); coin_germany.src				= "images/theEuro_map/22_germany_ro.gif";
	coin_greece				= new Image(); coin_greece.src				= "images/theEuro_map/22_greece_ro.gif";
	coin_ireland			= new Image(); coin_ireland.src				= "images/theEuro_map/22_ireland_ro.gif";
	coin_italy				= new Image(); coin_italy.src				= "images/theEuro_map/22_italy_ro.gif";
	coin_luxembourg			= new Image(); coin_luxembourg.src			= "images/theEuro_map/22_luxembourg_ro.gif";
	coin_netherlands		= new Image(); coin_netherlands.src			= "images/theEuro_map/22_netherlands_ro.gif";
	coin_portugal			= new Image(); coin_portugal.src			= "images/theEuro_map/22_portugal_ro.gif";
	coin_spain				= new Image(); coin_spain.src				= "images/theEuro_map/22_spain_ro.gif";
	text_austria			= new Image(); text_austria.src				= "images/theEuro_map/32_austria_ro.gif";
	text_belgium			= new Image(); text_belgium.src				= "images/theEuro_map/32_belgium_ro.gif";
	text_finland			= new Image(); text_finland.src				= "images/theEuro_map/32_finland_ro.gif";
	text_france				= new Image(); text_france.src				= "images/theEuro_map/32_france_ro.gif";
	text_germany			= new Image(); text_germany.src				= "images/theEuro_map/32_germany_ro.gif";
	text_greece				= new Image(); text_greece.src				= "images/theEuro_map/32_greece_ro.gif";
	text_ireland			= new Image(); text_ireland.src				= "images/theEuro_map/32_ireland_ro.gif";
	text_italy				= new Image(); text_italy.src				= "images/theEuro_map/32_italy_ro.gif";
	text_luxembourg			= new Image(); text_luxembourg.src			= "images/theEuro_map/32_luxembourg_ro.gif";
	text_netherlands		= new Image(); text_netherlands.src			= "images/theEuro_map/32_netherlands_ro.gif";
	text_portugal			= new Image(); text_portugal.src			= "images/theEuro_map/32_portugal_ro.gif";
	text_spain				= new Image(); text_spain.src				= "images/theEuro_map/32_spain_ro.gif";
}
// image swapping function for the Euro Map
function fnSwapGraphic(country) {
	if (document.images) {
		coinSwap				= eval("coin_" + country + ".src");
		textSwap				= eval("text_" + country + ".src");
		document["coin"].src	= coinSwap;
		document["text"].src	= textSwap;
	}
}

