// HTML-Standard Version 5.05.99 			menuepunkte = 11         //Tragen Sie hier die Anzahl der Menüpunkte ein	anzahl = menuepunkte-1			bild = new Array()  // Speicherplatz reservieren fuer bilder	bild[0] = new Image()					bild[0].src = "images/nomark.gif"	bild[1] = new Image()	bild[1].src = "images/mark.gif"             	function BildwechselOnClick(bildname) 			{				for(i=0;i<=anzahl;i++) {			window.document.images["marker_"+i].src = bild[0].src		}		window.document.images[bildname].src = bild[1].src	}		function inhalt_laden() {		window.document.images["marker_0"].src = bild[1].src		parent.frames[1].document.location = "i_000.html"		}	function inhalt_laden_2() {		//alert(parent.frames[1].location.hash)		if (parent.frames[1].location.hash == "") {			window.document.images["marker_0"].src = bild[1].src		}		if (parent.frames[1].location.hash == "#0") {			window.document.images["marker_0"].src = bild[1].src		}		if (parent.frames[1].location.hash == "#1") {			window.document.images["marker_1"].src = bild[1].src		}		if (parent.frames[1].location.hash == "#2") {			window.document.images["marker_2"].src = bild[1].src		}		if (parent.frames[1].location.hash == "#3") {			window.document.images["marker_3"].src = bild[1].src		}		if (parent.frames[1].location.hash == "#4") {			window.document.images["marker_4"].src = bild[1].src		}		if (parent.frames[1].location.hash == "#5") {			window.document.images["marker_5"].src = bild[1].src		}		if (parent.frames[1].location.hash == "#6") {			window.document.images["marker_6"].src = bild[1].src		}		if (parent.frames[1].location.hash == "#7") {			window.document.images["marker_7"].src = bild[1].src		}		if (parent.frames[1].location.hash == "#8") {			window.document.images["marker_8"].src = bild[1].src		}				if (parent.frames[1].location.hash == "#9") {			window.document.images["marker_9"].src = bild[1].src		}		if (parent.frames[1].location.hash == "#10") {			window.document.images["marker_10"].src = bild[1].src		}	}