// JavaScript Document
<!--
number_of_sponsors=9;

var sctr=0;
var halt=0;
var isn=new Array();
for (i=0;i<number_of_sponsors;i++){
 isn[i]=new Image();
}
isn[0].src="gaestehaus19.jpg";
isn[1].src="gaestehaus24.jpg";
isn[2].src="landschaft6.jpg";
isn[3].src="landschaft4.jpg";
isn[4].src="landschaft2.jpg";
isn[5].src="032_33.jpg";
isn[6].src="landschaft5.jpg";
isn[7].src="027_28.jpg";
isn[8].src="landschaft3.jpg";
var durl=new Array();

function rotateIt(){
 if (halt!=1){
  sctr++;
  if (sctr>number_of_sponsors-1){
   sctr=0;
   }
  document.sponsor.src=isn[sctr].src;
  setTimeout("rotateIt()",6000);
  }
 }
function doIt(){
 halt=1;

 }

function dispIt(){
 parent.window.status=durl[sctr];
 }
// End Hiding -->

