adImg = new Array("a/show/04/01.jpg",
				  "a/show/04/02.jpg",
				  "a/show/04/03.jpg",
				  "a/show/04/04.jpg",
				  "a/show/04/05.jpg",
				  "a/show/04/06.jpg",
				  "a/show/04/07.jpg",
				  "a/show/04/08.jpg",
				  "a/show/04/09.jpg",
				  "a/show/04/10.jpg",
				  "a/show/04/11.jpg",
				  "a/show/04/12.jpg",
				  "a/show/04/13.jpg",
				  "a/show/04/14.jpg",
				  "a/show/04/15.jpg",
				  "a/show/04/16.jpg",
				  "a/show/04/17.jpg",
				  "a/show/04/18.jpg",
				  "a/show/04/19.jpg",
				  "a/show/04/20.jpg",
				  "a/show/04/21.jpg",
				  "a/show/04/22.jpg",
				  "a/show/04/23.jpg");
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()",6000);
}

