<!-- Hide from JavaScript-Impaired Browsers
   number_of_sponsors=8;

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="slides/1.jpg";
isn[1].src="slides/2.jpg";
isn[2].src="slides/3.jpg";
isn[3].src="slides/4.jpg";
isn[4].src="slides/5.jpg";
isn[5].src="slides/6.jpg";
isn[6].src="slides/7.jpg";
isn[7].src="slides/8.jpg";


/* This script is set to rotate every 10 seconds.
   (5000=5 seconds, so 30000 would equal 30, etc)
   You should change the number in the setTimeout()
   call below for the number of seconds you wish. */
function rotateIt(){
 if (halt!=1){
  sctr++;
  if (sctr>number_of_sponsors-1){
   sctr=0;
   }
  document.sponsor.src=isn[sctr].src;
  setTimeout("rotateIt()",5000);
  }
 }


function doIt(){
 halt=1;
 location.href=durl[sctr];
 }

function dispIt(){
 parent.window.status=durl[sctr];
 }
