<!-- 
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="images/banners/thehungersite.gif";
isn[1].src="images/banners/therainforestsite.gif";

var durl=new Array();
durl[0]="http://www.thehungersite.com";
durl[1]="http://www.therainforestsite.com";

function rotateIt(){
 if (halt!=1){
  sctr++;
  if (sctr>number_of_sponsors-1){
   sctr=0;
   }
  document.sponsor.src=isn[sctr].src;
  setTimeout("rotateIt()",3500);
  }
 }


function doIt(){
 halt=1;
 location.href=durl[sctr];
 }

function dispIt(){
 parent.window.status=durl[sctr];
 }
-->

