<!--
//by Mantat Lam
//9/26, 2001

adImg = new Array("0.gif",
                  "1.gif",
                  "2.gif",
		  "3.gif",
		  "4.gif", 
	          "5.gif",
		  "6.gif",
		  "7.gif",
		  "8.gif",
		  "9.gif",
		  "10.gif",
		  "11.gif",
		  "12.gif",
		  "13.gif",
		  "14.gif",
		  "15.gif",
		  "16.gif");

curDate = new Date();
curSec = curDate.getSeconds();
adNr = curSec % adImg.length;
adTimer = 0;
function rotate(){
  adNr = adNr + 1;
  if (adNr >= adImg.length) {
    adNr = 0;
    }
  document.adDsp.src = adImg[adNr];
  adTimer = setTimeout("rotate()",10000);
}
// -->
