//** Added by : tx_pplib_div->addJs
var timeDelay = 4;
var Pix = new Array(
          "typo3temp/pics/b1aa07b505.jpg",
          "typo3temp/pics/ddccbd08eb.jpg",
          "typo3temp/pics/1eecf5e735.jpg",
          "typo3temp/pics/b3c6293e76.jpg",
          "typo3temp/pics/89edd72fb9.jpg",
          "typo3temp/pics/08c572fa85.jpg",
          "typo3temp/pics/aa89ef6335.jpg",
          "typo3temp/pics/aca6e31691.jpg",
          "typo3temp/pics/b9e600645b.jpg",
          "typo3temp/pics/6266059134.jpg",
          "typo3temp/pics/899c56ce6a.jpg",
          "typo3temp/pics/02dc2701dc.jpg",
          "typo3temp/pics/a8ee5ea6a4.jpg",
          "typo3temp/pics/65a9104e31.jpg",
          "typo3temp/pics/c2064245a6.jpg",
          "typo3temp/pics/4ac95eb82a.jpg"
);
var howMany = Pix.length;
timeDelay *= 1000;
var PicCurrentNum = 0;
var PicCurrent = new Image();
PicCurrent.src = Pix[PicCurrentNum];
function startPix() {
     setInterval("slideshow()", timeDelay);
}
function slideshow() {
     PicCurrentNum++;
     if (PicCurrentNum == howMany) {
         PicCurrentNum = 0;
     }
     PicCurrent.src = Pix[PicCurrentNum];
     document["ChangingPix"].src = PicCurrent.src;
}
startPix();
