﻿	if (document.images)
   	var bilder = new Array("images/sonstige/dia1.jpg", "images/sonstige/dia2.jpg", "images/sonstige/dia3.jpg", "images/sonstige/dia4.jpg", "images/sonstige/dia4.jpg", "images/sonstige/dia5.jpg"
   							, "images/sonstige/dia6.jpg", "images/sonstige/dia7.jpg", "images/sonstige/dia8.jpg")
	var naechstesBild = 0 //Array-Index der n?chsten Bildes	
	var verzoegerung = 6000 //Verz?gerung in Millisekunden //-->

function animation()
{
   		document.ani.src = bilder[naechstesBild]
   		naechstesBild++
   		if (naechstesBild==bilder.length)
     			naechstesBild = 0
			 	setTimeout("animation()", verzoegerung)
}
	
