
// -->
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 6000

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

// Specify the image files
var Pic = new Array() 
Pic[0] = ['images/photos/uptown_imgPht-02.jpg'];
Pic[1] = ['images/photos/uptown_imgPht-03.jpg'];
Pic[2] = ['images/photos/uptown_imgPht-04.jpg'];
Pic[3] = ['images/photos/uptown_imgPht-05.jpg'];
Pic[4] = ['images/photos/uptown_imgPht-06.jpg'];
Pic[5] = ['images/photos/uptown_imgPht-07.jpg'];
Pic[6] = ['images/photos/uptown_imgPht-08.jpg'];
Pic[7] = ['images/photos/uptown_imgPht-09.jpg'];
Pic[8] = ['images/photos/uptown_imgPht-10.jpg'];
Pic[9] = ['images/photos/uptown_imgPht-11.jpg'];
Pic[10] = ['images/photos/uptown_imgPht-12.jpg'];
Pic[11] = ['images/photos/uptown_imgPht-13.jpg'];
Pic[12] = ['images/photos/uptown_imgPht-14.jpg'];
Pic[13] = ['images/photos/uptown_imgPht-15.jpg'];
Pic[14] = ['images/photos/uptown_imgPht-16.jpg'];
Pic[15] = ['images/photos/uptown_imgPht-17.jpg'];
Pic[16] = ['images/photos/uptown_imgPht-18.jpg'];
Pic[17] = ['images/photos/uptown_imgPht-19.jpg'];
Pic[18] = ['images/photos/uptown_imgPht-20.jpg'];
Pic[19] = ['images/photos/uptown_imgPht-21.jpg'];
Pic[20] = ['images/photos/uptown_imgPht-01.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][0]
}

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)
}


