function menu(id) {
	document.getElementById("kopf_"+id).style.color="#FFFFFF";
	if (id == "ort") {
		document.getElementById(id).style.backgroundColor="#CDDBD0";
		document.getElementById("kopf_"+id).style.backgroundColor="#246B4B";
	} else if (id == "kunst") {
		document.getElementById(id).style.backgroundColor="#DCE7D1";
		document.getElementById("kopf_"+id).style.backgroundColor="#2B942D";
	} else if (id == "kontakt") {
		document.getElementById(id).style.backgroundColor="#E4E9CC";
		document.getElementById("kopf_"+id).style.backgroundColor="#8DA103";
	} else if (id == "buerger") {
		document.getElementById(id).style.backgroundColor="#E9F1D5";
		document.getElementById("kopf_"+id).style.backgroundColor="#8BBB13";
	}
}

function menugrau(id) {
	document.getElementById(id).style.backgroundColor="#F3F3F4";
	document.getElementById("kopf_"+id).style.backgroundColor="#C9CBCC";
	document.getElementById("kopf_"+id).style.color="#000000";
}



function galerie(id) {
	document.getElementById('bild_gross').src="bilder/impressionen/"+id+".jpg";
}



/*function bildAnzeigen(bildname,versuch) {

var bild = new Image();
bild.src = "./bilder/"+bildname+"_g.jpg";

if (bild.width <= 0 && versuch < 3) {
	//alert('test');
	versuch++;
	setTimeout("bildAnzeigen("+bildname+","+versuch+")",1000);
} else {
	var fenster = window.open (
	bild.src,
	name,
	+"toolbar=0"
	+",location=0"
	+",directories=0"
	+",status=0"
	+",menubar=0"
	+",scrollbars=0"
	+",resizable=0"
	+",width="+(bild.width+20)
	+",height="+(bild.height+20)
	);

	fenster.moveTo(
	100,100
	);
}

//fenster.location.href = "./bilder/"+bild+"_g.jpg";
}*/

function bildAnzeigen(bildname) {

var bild = new Image();
bild.src = "./bilder/"+bildname+"_g.jpg";

	var fenster = window.open (
	bild.src,
	name,
	+"toolbar=0"
	+",location=0"
	+",directories=0"
	+",status=0"
	+",menubar=0"
	+",scrollbars=0"
	+",resizable=0"
	//+",width="+(bild.width+20)
	//+",height="+(bild.height+20)
	+",width=1020"
	+",height=720"
	);

	fenster.moveTo(
	100,100
	);
}
