function WechsleFarbe(ziel,max) {
// Reset alle idX
for(var i = 1; i <= max; i++) {
  document.getElementById("id"+i).style.color = "#FFFFFF";
}
// Set Ziel-ID und goto Ziel
var pAct = document.getElementById(ziel);
	pAct.style.color = "#FFFF99";
	location.href="#"+ziel;
}
