

// NS4-6,IE4-6

// =======================================
// set the following variables
// =======================================

// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 2000

// Duration of crossfade (seconds)
var crossFadeDuration = 1

var Pic = new Array()

Pic[0] = '../gfx/slideshow_small/people_laptop.jpg'
Pic[1] = '../gfx/slideshow_small/pillon_sky.jpg'
Pic[2] = '../gfx/slideshow_small/pillon_sky2.jpg'
Pic[3] = '../gfx/slideshow_small/feather.jpg'
//Pic[4] = '../gfx/slideshow_small/turbines_dark.jpg'
//Pic[5] = '../gfx/slideshow_small/bulb.jpg'
Pic[4] = '../gfx/slideshow_small/red_balloon.jpg'
Pic[5] = '../gfx/slideshow_small/clouds_small.jpg'
//Pic[6] = '../gfx/slideshow_small/beam.jpg'
Pic[6] = '../gfx/slideshow_small/buttons.jpg'


var t
var j = 0
var p = Pic.length

var preLoad = new Array()
for (i = 0; i < p; i++){
   preLoad[i] = new Image()
   preLoad[i].src = Pic[i]
}

function runSlideShow(){
   if (document.all){
      document.images.SlideShow.style.filter="blendTrans(duration=2)"
      document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShow.filters.blendTrans.Apply()      
   }
   document.images.SlideShow.src = preLoad[j].src
   if (document.all){
      document.images.SlideShow.filters.blendTrans.Play()
   }
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runSlideShow()', slideShowSpeed)
}
