

// Diashow Wörgl 31.7.2009

var a = new Array();
a[0] = new Image(); a[0].src = "images/20090731/01.jpg";
a[1] = new Image(); a[1].src = "images/20090731/02.jpg";
a[2] = new Image(); a[2].src = "images/20090731/03.jpg";
a[3] = new Image(); a[3].src = "images/20090731/04.jpg";
a[4] = new Image(); a[4].src = "images/20090731/05.jpg";            
	
var i = 0;
function woergl() {
	if ( i > 4 )
		i = 0;
		document.images["tywoe"].src = a[i].src;
		i++;
		window.setTimeout("woergl()",5000);
	}
