function show_foto(fotos,nr) {
	document.getElementById("bildanzeige").src=fotos[nr]['url'];
	document.getElementById("bildtitel").innerHTML=fotos[nr]['titel'];
	if (nr<fotos.length-1) {
		var next_button = '<a href="javascript:show_foto(fotos,'+(nr+1)+');"><img src="images/weiter.gif" alt="weiter" /></a><br /><br />';
	}
	else {
		var next_button = '<a href="javascript:show_foto(fotos,0);"><img src="images/weiter.gif" alt="weiter" /></a><br /><br />';
	}
	if (nr>0) {
		var back_button = '<a href="javascript:show_foto(fotos,'+(nr-1)+');"><img src="images/zurueck.gif" alt="zurück" /></a><br /><br />';
	}
	else {
		var back_button = '<a href="javascript:show_foto(fotos,'+(fotos.length-1)+');"><img src="images/zurueck.gif" alt="zurück" /></a><br /><br />';
	}
	document.getElementById("imgnavi").innerHTML=next_button+back_button;
}

