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