var slideShowSpeed1 = 4200
var crossFadeDuration = 3
var Pic1 = new Array()

Pic1[0] = '/sfm/graphics/slideshow/01.jpg'
Pic1[1] = '/sfm/graphics/slideshow/02.jpg'
Pic1[2] = '/sfm/graphics/slideshow/03.jpg'

var a
var b = 0
var c = Pic1.length

var preLoad1 = new Array()
for (m = 0; m < c; m++){
   preLoad1[m] = new Image()
   preLoad1[m].src = Pic1[m]
}

function runSlideShow(){
   if (document.all){
      document.images.SlideShow.style.filter="blendTrans(duration=2)"
      document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShow.filters.blendTrans.Apply()      
   }
   document.images.SlideShow.src = preLoad1[b].src
   if (document.all){
      document.images.SlideShow.filters.blendTrans.Play()
   }
   b = b + 1
   if (b > (c-1)) b=0
   a = setTimeout('runSlideShow()', slideShowSpeed1)
}