<!--
var Bild = new Array(9);
var i=0;
//-->

function Blaettern(x)
{
var z=x;
Bild[0] = new Image(); Bild[0].src="fotos/"+z+"/0.jpg";
Bild[1] = new Image(); Bild[1].src="fotos/"+z+"/1.jpg";
Bild[2] = new Image(); Bild[2].src="fotos/"+z+"/2.jpg";
Bild[3] = new Image(); Bild[3].src="fotos/"+z+"/3.jpg";
Bild[4] = new Image(); Bild[4].src="fotos/"+z+"/4.jpg";
Bild[5] = new Image(); Bild[5].src="fotos/"+z+"/5.jpg";
Bild[6] = new Image(); Bild[6].src="fotos/"+z+"/6.jpg";
Bild[7] = new Image(); Bild[7].src="fotos/"+z+"/7.jpg";
Bild[8] = new Image(); Bild[8].src="fotos/"+z+"/8.jpg";
Bild[9] = new Image(); Bild[9].src="fotos/"+z+"/9.jpg";

i=i+x;
if(i > Bild.length - 1)
i = 0;
else
if(i < 0) i = Bild.length - 1;
document.images['bild0'].src = Bild[i].src;
}
