// JavaScript Document
/*var bRotateAktiv = false;
var timerID = null;
var bilder = new Array();
bilder[0] = new Image();
bilder[0].src = *VIPURL* "http://www.zisch.com/zisch_edit/zisch/Stylesheets/images/leftimage-1.jpg";
bilder[1] = new Image();
bilder[1].src = *VIPURL* "http://www.zisch.com/zisch_edit/zisch/Stylesheets/images/leftimage-2.jpg";
bilder[2] = new Image();
bilder[2].src = *VIPURL* "http://www.zisch.com/zisch_edit/zisch/Stylesheets/images/leftimage-3.jpg";
bilder[3] = new Image();
bilder[3].src = *VIPURL* "http://www.zisch.com/zisch_edit/zisch/Stylesheets/images/leftimage-4.jpg";
var index = 0;

function stopRotate()
{
	if( bRotateAktiv )
		clearTimeout( timerID );
	bRotateAktiv = false;
}
function rotateLeftImage()
{
	if (index > 3)
		index = 0;
	document.images[0].src = bilder[index].src;
	index = index + 1;
	timerID = setTimeout( "rotateLeftImage()", 5000 );
	bRotateAktiv = true;
}
function startRotate()
{
	for( var i = 0; i < bilder.length; i++ )
	{
		if ( document.images[0].src = bilder[i].src )
		{
			index = i;
			break;
		}
	}
	stopRotate();
	rotateLeftImage();
}*/
