// Set slideShowSpeed (milliseconds)
var slideShowSpeed3 = 5000

// Duration of crossfade (seconds)
var crossFadeDuration3 = 3

// Specify the image files
var Pic3 = new Array() // don't touch this
// to add more images, just continue
// the pattern, adding to the array below

Pic3[0] = 'images_Laser/laser_01M.jpg'
Pic3[1] = 'images_Laser/laser_02M.jpg'
Pic3[2] = 'images_Laser/laser_03M.jpg'
Pic3[3] = 'images_Laser/laser_04M.jpg'
Pic3[4] = 'images_Laser/laser_05M.jpg'
Pic3[5] = 'images_Laser/laser_06M.jpg'
Pic3[6] = 'images_Laser/laser_07M.jpg'
Pic3[7] = 'images_Laser/laser_08M.jpg'
Pic3[8] = 'images_Laser/laser_09M.jpg'


// =======================================
// do not edit anything below this line
// =======================================

var a
var b = 0
var c = Pic3.length

var preLoad3 = new Array()
for (e = 0; e < c; e++){
   preLoad3[e] = new Image()
   preLoad3[e].src = Pic3[e]
}

function runSlideShow3(){
   if (document.all){
      document.images.SlideShow3.style.filter="blendTrans(duration=2)"
      document.images.SlideShow3.style.filter="blendTrans(duration=crossFadeDuration3)"
      document.images.SlideShow3.filters.blendTrans.Apply()      
   }
   document.images.SlideShow3.src = preLoad3[b].src
   if (document.all){
      document.images.SlideShow3.filters.blendTrans.Play()
   }
   b = b + 1
   if (b > (c-1)) b=0
   a = setTimeout('runSlideShow3()', slideShowSpeed3)
}