//	set images used
	horseItem = new Array()
	//	-----
		horseItem["none"]			= 'dummy.gif'
		horseItem["default"]		= 'catSelectionFinal_default.gif'
	//	-----
		horseItem["Gewrichten"]		= 'catSelectionFinal_Gewrichte.gif'
		horseItem["Hart en vaten"]	= 'catSelectionFinal_Hart_en_v.gif'
		horseItem["Hoeven"]			= 'catSelectionFinal_Hoeven.gif'
		horseItem["Lever"]			= 'catSelectionFinal_Lever.gif'
		horseItem["Luchtwegen"]		= 'catSelectionFinal_Luchtwege.gif'
		horseItem["Nieren"]			= 'catSelectionFinal_Nieren.gif'
		horseItem["Spijsvertering"]	= 'catSelectionFinal_Spijsvert.gif'
		horseItem["Spieren"]		= 'catSelectionFinal_Spieren.gif'
	//	-----
		horseItem["Ogen, oren"]		= 'catSelectionFinal_default.gif'
	
	function horseCom( key, label )
	{
	//	checks if label in array, otherwise use default
	//	document.getElementById('horseImage').style.background = 'url(/Images/horse/' + ( key != '' ? ( typeof( horseItem[ key ] ) != "undefined" ? horseItem[ key ] : horseItem["default"] ) : horseItem["none"] ) + ')  no-repeat';
		document.getElementById('horseImageMap').src =  '/Images/horse/' + (key != '' ? ( typeof( horseItem[ key ] ) != "undefined" ? horseItem[ key ] : horseItem["default"] ) : horseItem["none"]);
	//	write label, if empty write none-breaking space
		label == '' ? document.getElementById('horseLabel').innerHTML = '&nbsp;' : document.getElementById('horseLabel').innerHTML = label;
	}

