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

