// JavaScript Document
function anzeigen(was)
{
	var feld = document.getElementById(was);
	if (feld.style.display=='none')
	{
		feld.style.display = "block";
	}else{
		feld.style.display = "none";
	}
}
	var fr1url = "/Tauferer-Ahrntal/1";
	var fr2url = "/Vinschgau/2";
	var fr3url = "/Meran--Umgebung/3";	
	var fr4url = "/Eisacktal/4";
	var fr5url = "/Bozen--Umgebung/5";	
	var fr6url = "/Dolomiten/6";	
	var fr7url = "/Suedtirols-Sueden/7";
	var fr8url = "/Kronplatz/8";
	var fr9url = "/Hochpustertal/9";
				
function backMe(what) {
	fr1.style.backgroundColor='#ffffff';
	fr2.style.backgroundColor='#ffffff';
	fr3.style.backgroundColor='#ffffff';
	fr4.style.backgroundColor='#ffffff';
	fr5.style.backgroundColor='#ffffff';
	fr6.style.backgroundColor='#ffffff';
	fr7.style.backgroundColor='#ffffff';
	fr8.style.backgroundColor='#ffffff';
	fr9.style.backgroundColor='#ffffff';
	what.style.backgroundColor='#BD9069';
}
function unbackMe() {
	fr1.style.backgroundColor='#ffffff';
	fr2.style.backgroundColor='#ffffff';
	fr3.style.backgroundColor='#ffffff';
	fr4.style.backgroundColor='#ffffff';
	fr5.style.backgroundColor='#ffffff';
	fr6.style.backgroundColor='#ffffff';
	fr7.style.backgroundColor='#ffffff';
	fr8.style.backgroundColor='#ffffff';
	fr9.style.backgroundColor='#ffffff';
}
function fregion(wohin) {
	document.location.href = wohin;
}

function switchImage(imgName, imgSrc) 
{
  if (document.images)
  {
    if (imgSrc != "none")
    {
      document.images[imgName].src = imgSrc;
    }
  }
}


