// function für gallery
// pfeil rechts - nächstes bild
// pfeil links - vorheriges bild

function TasteGedrueckt (Ereignis){
	if(!Ereignis){
		Ereignis = window.event;
	}

	if (Ereignis.which){
		Tastencode = Ereignis.which;
	}else if(Ereignis.keyCode){
		Tastencode = Ereignis.keyCode;
	}

	if (Tastencode == 37) {
		// links
		window.location.href = document.getElementById("link_prev").href;
	}
	if (Tastencode == 39) {
		// rechts
		window.location.href = document.getElementById("link_next").href;
	}
}


document.onkeydown = TasteGedrueckt;