// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 6000

// Duration of crossfade (seconds)
var crossFadeDuration = 3

// Specify the image files
var Pic = new Array(); 

// don't touch this
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = 'us/images/eti_1.jpg'
Pic[1] = 'us/images/eti_2.jpg'
Pic[2] = 'us/images/eti_3.jpg'
Pic[3] = 'us/images/eti_4.jpg'




// =======================================
// do not edit anything below this line
// =======================================

var t1
var j1 = 0
var p1 = Pic.length

var preLoad = new Array()
for (i = 0; i < p1; i++){
preLoad[i] = new Image()
preLoad[i].src = Pic[i]
}

function runSlideShow(){
if (document.all){
document.images.SlideShow.style.filter="revealTrans(duration=2)"
document.images.SlideShow.style.filter="revealTrans(duration=1,transition=75)"
document.images.SlideShow.filters.revealTrans.Apply() 
}
document.images.SlideShow.src = preLoad[j1].src
if (document.all){
//document.images.SlideShow.filters.blendTrans.Play()
}
j1 = j1 + 1
if (j1 > (p1-1)) j1=0
t1 = setTimeout('runSlideShow()', slideShowSpeed)
}