var slideShowSpeed = 3000

var crossFadeDuration = 1

var rb = new Array() 


rb[0] = '../images09/RED_BOX1.jpg'
rb[1] = '../images09/RED_BOX2.jpg'
rb[2] = '../images09/RED_BOX3.jpg'
rb[3] = '../images09/RED_BOX4.jpg'
rb[4] = '../images09/RED_BOX5.jpg'

var ti = new Array() 


ti[0] = '../images09/1_mercedes.jpg'
ti[1] = '../images09/2_lucca.jpg'
ti[2] = '../images09/3_londra2.jpg'
ti[3] = '../images09/4_aria.jpg'
ti[4] = '../images09/6_fremantle.jpg'
ti[5] = '../images09/7_newton.jpg'
ti[6] = '../images09/8_fifi.jpg'
ti[7] = '../images09/9_century.jpg'
ti[8] = '../images09/10_modem.jpg'


var t
var s
var j = 0
var k= 0
var p = rb.length
var q= ti.length
var preLoad1 = new Array()

for (i = 0; i < p; i++){
   preLoad1[i] = new Image()
   preLoad1[i].src = rb[i]
}

var preLoad2 = new Array()

for (h = 0; h < q; h++){
   preLoad2[h] = new Image()
   preLoad2[h].src = ti[h]
}

function runSlideShow1(){

if (document.all){
      document.images.SlideShow1.style.filter="blendTrans(duration=2)"
      document.images.SlideShow1.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShow1.filters.blendTrans.Apply()      
   }
   document.images.SlideShow1.src = preLoad1[j].src
   if (document.all){
      document.images.SlideShow1.filters.blendTrans.Play()
   }
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runSlideShow1()', slideShowSpeed)
}

function runSlideShow2(){

if (document.all){
      document.images.SlideShow2.style.filter="blendTrans(duration=2)"
      document.images.SlideShow2.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShow2.filters.blendTrans.Apply()      
   }
   document.images.SlideShow2.src = preLoad2[k].src
   if (document.all){
      document.images.SlideShow2.filters.blendTrans.Play()
   }
   k = k + 1
   if (k > (q-1)) k=0
   s = setTimeout('runSlideShow2()', slideShowSpeed)
}