<!-- 
if(top.document.location.href != self.location.href)
	top.document.location.href = self.location.href;

//*********** start image-randomizer *****************
var anz = 14; // beginnt bei 1
var anzStart = 1; 
var sek = 6;
var timeoutID;
var counter = 	1;
// damit die Bildreihenfolge bei Neuaufruf einer anderen Seite gewährleistet bleibt, wird im window.name diese Var gespreichert.	
var winStrg = "anjaknust";
if(window.name.indexOf(winStrg) != -1){
	counter = Number(window.name.substr(winStrg.length,window.name.length));
	if(timeoutID)clearTimeout(timeoutID);
	}

var imgArr = new Array(anz + anzStart);

function init(){
	for(i = anzStart; i<=anz; i++){
		imgArr[i] = new Image();
		imgArr[i].src = "/img/trypt_"+i+".jpg";
		}
	timeoutID = setTimeout('autoChange()',sek*1000);
	}

function autoChange(){
	chgImg();
	timeoutID = setTimeout("autoChange()",sek*1000);
	}

function chgImg(){
	window.name = winStrg + counter;
	for(i = 1; i <=3; i++)document.images["trypt_" + i].src = imgArr[counter].src;
	if(counter < anz)counter++; else counter = anzStart;
	}
	

function clickChange(){
	clearTimeout(timeoutID);
	chgImg();
	timeoutID = setTimeout("autoChange()",sek*1000);
	}	
//*********** end image-randomizer *****************

// -->
