// 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] = '/new_photos/2101110_1.jpg'
Pic[1] = '/new_photos/2101110_2.jpg'
Pic[2] = '/new_photos/2101110_3.jpg'
Pic[3] = '/new_photos/2101110_4.jpg'
Pic[4] = '/new_photos/2101110_5.jpg'
Pic[5] = '/new_photos/2101110_6.jpg'
Pic[6] = '/new_photos/2101110_7.jpg'
Pic[7] = '/new_photos/2101110_8.jpg'
Pic[8] = '/new_photos/2101110_9.jpg'
Pic[9] = '/new_photos/2101110_10.jpg'
Pic[10] = '/new_photos/2101110_11.jpg'
Pic[11] = '/new_photos/2101110_12.jpg'
Pic[12] = '/new_photos/2101110_13.jpg'
Pic[13] = '/new_photos/2101110_14.jpg'
Pic[14] = '/new_photos/2101110_15.jpg'
Pic[15] = '/new_photos/2101110_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 -->
