// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 3000
// Duration of crossfade (seconds)
var crossFadeDuration = 7
// Specify the image files
var Pic2 = new Array() // don't touch this
Pic2[0] = 'rot.gif'
Pic2[1] = 'rot2.gif'
Pic2[2] = 'rot3.gif'
Pic2[3] = 'rot4.gif'
Pic2[4] = 'rot1.gif'
Pic2[5] = 'rot.gif'
Pic2[6] = 'rot3.gif'
Pic2[7] = 'rot4.gif'
Pic2[8] = 'rot2.gif'
Pic2[9] = 'rot1.gif'
Pic2[10] = 'rot.gif'
Pic2[11] = 'rot4.gif'
Pic2[12] = 'rot1.gif'
// =======================================
// do not edit anything below this line
// =======================================
var t
var j = 0
var p = Pic2.length
var preLoad2 = new Array()
for (i = 0; i < p; i++){
   preLoad2[i] = new Image()
   preLoad2[i].src = Pic2[i]
}
function runSlideShow_r(){
   if (document.all){
      document.images.SlideShow_r.style.filter="blendTrans(duration=2)"
      document.images.SlideShow_r.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShow_r.filters.blendTrans.Apply()      
   }
   document.images.SlideShow_r.src = preLoad2[j].src
   if (document.all){
      document.images.SlideShow_r.filters.blendTrans.Play()
   }
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runSlideShow_r()', slideShowSpeed)
}

