// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 8000
// Duration of crossfade (seconds)
var crossFadeDuration = 20
// 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] = '/used_photos/23422_1.jpg'
Pic[1] = '/used_photos/23422_2.jpg'
Pic[2] = '/used_photos/23422_3.jpg'
Pic[3] = '/used_photos/23422_4.jpg'
Pic[4] = '/used_photos/23422_5.jpg'
Pic[5] = '/used_photos/23422_6.jpg'
Pic[6] = '/used_photos/23422_7.jpg'
Pic[7] = '/used_photos/23422_8.jpg'
Pic[8] = '/used_photos/23422_9.jpg'
Pic[9] = '/used_photos/23422_10.jpg'
Pic[10] = '/used_photos/23422_11.jpg'
Pic[11] = '/used_photos/23422_12.jpg'
Pic[12] = '/used_photos/23422_13.jpg'
Pic[13] = '/used_photos/23422_14.jpg'
Pic[14] = '/used_photos/23422_15.jpg'
Pic[15] = '/used_photos/23422_16.jpg'
// =======================================
// do not edit anything below this line
// =======================================
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="revealTrans(duration=2,Transition=30)"
      document.images.SlideShow.style.filter="revealTrans(duration=crossFadeDuration)"
      document.images.SlideShow.filters.revealTrans.Apply()      
   }
   document.images.SlideShow.src = preLoad[j].src
   if (document.all){
      document.images.SlideShow.filters.revealTrans.Play()
   }
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runSlideShow()', slideShowSpeed)
}
//  End -->

