// JavaScript Document

var Bildershow=new Image;
var bilder = new Array("/Bilder/Lana-4-Show.jpg","/Bilder/Lana-6-Show.jpg","/Bilder/Lana-5-Show.jpg","/Bilder/Lana-2-Show.jpg","/Bilder/Lana-3-Show.jpg","/Bilder/Lana-1-Show.jpg");
var a=1;

function Wechsel () {
a++;
window.document.Bildershow.filters.blendTrans.Apply();
window.document.Bildershow.src =bilder[a];
window.document.Bildershow.filters.blendTrans.Play();

if (a==5)
	{
	a=-1;
	}

setTimeout("Wechsel()", 9000);
}

