number_of_sponsors=2;

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="http://hudsonvalleyusa.com/images/angelweb_freedemo.gif";
isn[1].src="http://hudsonvalleyusa.com/images/hvusa_freelisting.gif";


var durl=new Array();
durl[0]="http://hudsonvalleyusa.com/webdesign_info.htm";
durl[1]="http://hudsonvalleyusa.com/advertise.htm";


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];
 }
