﻿var slideShowSpeed = 6000  // mS
var crossFadeDuration = 8  // seconds

function runSlideShow()
{
   if (document.all)
   {
      document.images.Picture.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.Picture.filters.blendTrans.Apply()      
   }
   
   document.images.Picture.src = Pictures[picIndex].src;

   if (document.all)
   {
      document.images.Picture.filters.blendTrans.Play()
   }
   
   picIndex = picIndex + 1;
   if (picIndex > (Pictures.length-1)) picIndex=0;
   setTimeout('runSlideShow()', slideShowSpeed);
}
