// JavaScript Document


// --------- Selbsthilfegruppe -------------

// Bildertausch fuer Selbsthilfegruppe-Standort (Aktion bei Map und Text, optische Aenderung nur bei Map) - gedacht fuer MouseOver auf Text
function shgMapOver(Index) {
	var StrSourceMap = '_img/shgstandorte_map'+Index+'.gif';
	var StrSourceTxt = 'shgstandort'+Index+'';	
	document.getElementById('shgstandorte_map').src = StrSourceMap;
//	document.getElementById(StrSourceTxt).style.backgroundColor = "#d0e9fe";
}

// Bildertausch und Text-Hervorhebung fuer Selbsthilfegruppe-Standort (Map und Text) - gedacht fuer MouseOver auf Map
function shgMapTextOver(Index) {
	var StrSourceMap = '_img/shgstandorte_map'+Index+'.gif';
	var StrSourceTxt = 'shgstandort'+Index+'';	
	document.getElementById('shgstandorte_map').src = StrSourceMap;
	document.getElementById(StrSourceTxt).style.backgroundColor = "#d0e9fe";
}

// Standard-Bild und Text fuer Selbsthilfegruppe-Standort (Map und Text) - gedacht fuer MouseOut auf Text oder Map
function shgMapOut(Index) {
	var StrSourceMap = '_img/shgstandorte_map'+Index+'.gif';
	var StrSourceTxt = 'shgstandort'+Index+'';	
	document.getElementById('shgstandorte_map').src = "_img/shgstandorte_map.gif";
	document.getElementById(StrSourceTxt).style.backgroundColor = "transparent";	
}

