var fotos=new Array('gfx/alpinaslope.jpg',
           'gfx/slope1.jpg',
           'gfx/slope2.jpg',
		   'gfx/slope3.jpg',
           'gfx/slope4.jpg');

 var speed=4000;
 var pos=0;

function doit () {

if (!(document.images)) {return;}

 document.bild.src=fotos[pos++];

 if (pos == fotos.length) { pos = 0; }
 setTimeout("doit();",speed);
}
