var bild = new Array();
bild[0] = new Image(); bild[0].src="../images/g02.jpg";
bild[1] = new Image(); bild[1].src="../images/g01.jpg";
bild[2] = new Image(); bild[2].src="../images/g03.jpg";
bild[3] = new Image(); bild[3].src="../images/g05.jpg";
bild[4] = new Image(); bild[4].src="../images/g06.jpg";
bild[5] = new Image(); bild[5].src="../images/g07.jpg";
bild[6] = new Image(); bild[6].src="../images/g09.jpg";
bild[7] = new Image(); bild[7].src="../images/g10.jpg";
bild[8] = new Image(); bild[8].src="../images/g11.jpg";
var m=9;
var a=0;
var p=5;
var t;
function rueck()
{
	if (a==0) a=m;
	a=a-1;
	window.document.images[p].src = bild[a].src;
}
function vor()
{
	if (a==m-1) a=-1;
	a=a+1;
	window.document.images[p].src = bild[a].src;
}
function play()
{
	if (a==m-1) a=-1;
	a=a+1;
	window.document.images[p].src = bild[a].src;
	t=window.setTimeout("play();", 3000);
}
