var id;              // Die id des 
var count = 1;       // Zaehler
var intensity = 255; // Variable fuer Farbwert

function fetsh_hash() {
	if (location.hash.slice(1)) {
		id = location.hash.slice(1);
		id = window.document.getElementById(id);
		marker(id);
	}
}
function marker() {
	if (count <= 7) {
		id.style.cssText = ("background-color: rgb(255 ,255," + intensity + ")");
		intensity -= 10;
		count++;
		// Ab jetzt ruft sich die Funktion  selbst auf, bis var count ihr Limit erreicht hat
		window.setTimeout("marker()",100);
		} else if (count > 7 && intensity < 255)  {
			// Ab hier nach Weiss ausfaden
			intensity += 10;
			count++;
			id.style.cssText = ("background-color: rgb(255 ,255," + intensity + ")");
			window.setTimeout("marker()",250);
		}
}