// JavaScript Document
function SwitchNavi(id) {
	if (id == 'veranstaltungen') {
		window.document.getElementById("bild").src = "images/titelbild_gang.jpg";
	} else if (id == 'anfahrt')  {
		window.document.getElementById("bild").src = "images/titelbild_frontansicht.jpg";
	} else if (id == 'aktuelles')  {
		window.document.getElementById("bild").src = "images/titelbild_haus.jpg";
	} else if (id == 'geschichte')  {
		window.document.getElementById("bild").src = "images/titelbild_figur.jpg";
	}
}