function runSlideShow()
{
   if (document.all)
   {
      document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
      document.images.SlideShow.filters.blendTrans.Apply();
   }
   document.images.SlideShow.src = preLoad[j].src;
   document.images.SlideShow.hspace = preLoad[j].hspace;
   if (document.all)
   {
	  document.images.SlideShow.filters.blendTrans.Play();
   }
   j = j + 1;
   if (j > (p-1)) 
   	j=0;
   t = setTimeout('runSlideShow()', slideShowSpeed);
}

