if (document.location.pathname.indexOf("komponisten")!= -1) {
neueLocation = "../english/index.html";
newLocation = "../index.html";
}
if (document.location.pathname.indexOf("")!= -1) {
neueLocation = "english/index.html";
newLocation = "../index.html";
}
else {
str = document.location.href;
neueLocation = str.replace(/index.html/, "english/index.html");
stren = document.location.href;
newLocation = stren.replace(/english\//, "");
}

			function quadrat() {
				if (document.location.pathname.indexOf("ensemble") != -1 ) {
					document.ensemble.src = "/grafik/quadrat.gif";
				}
				else if (document.location.pathname.indexOf("mitglieder") != -1 ) {
					document.mitglieder.src = "/grafik/quadrat.gif";
				}
				else if (document.location.pathname.indexOf("repertoire") != -1) {
					document.repertoire.src = "/grafik/quadrat.gif";
				}
				else if (document.location.pathname.indexOf("cd") != -1) {
					document.cd.src = "/grafik/quadrat.gif";
				}
				else if (document.location.pathname.indexOf("presse/index") != -1) {
					document.presse.src = "/grafik/quadrat.gif";
				}
				else if (document.location.pathname.indexOf("stimmen") != -1) {
					document.stimmen.src = "/grafik/quadrat.gif";
				}
				else if (document.location.pathname.indexOf("bilder") != -1) {
					document.bilder.src = "/grafik/quadrat.gif";
				}
				else if (document.location.pathname.indexOf("texte") != -1) {
					document.texte.src = "/grafik/quadrat.gif";
				}
				else if (document.location.pathname.indexOf("kontakt") != -1) {
					document.kontakt.src = "/grafik/quadrat.gif";
				}
				else if (document.location.pathname.indexOf("links") != -1) {
					document.links.src = "/grafik/quadrat.gif";
				}
				else {
					document.index.src = "/grafik/quadrat.gif";
				}
			}
