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

