<!-- Begin
var slideShowSpeed = 5000

var crossFadeDuration = 3


var Pic = new Array() 

Pic[0] = 'gallery/eauphoto1.jpg'
Pic[1] = 'gallery/eauphoto2.jpg'
Pic[2] = 'gallery/eauphoto3.jpg'
Pic[3] = 'gallery/eauphoto4.jpg'
Pic[4] = 'gallery/eauphoto5.jpg'
Pic[5] = 'gallery/eauphoto6.jpg'
Pic[6] = 'gallery/eauphoto7.jpg'
Pic[7] = 'gallery/eauphoto8.jpg'
Pic[8] = 'gallery/eauphoto9.jpg'
Pic[9] = 'gallery/eauphoto10.jpg'
Pic[10] = 'gallery/eauphoto11.jpg'
Pic[11] = 'gallery/eauphoto12.jpg'
Pic[12] = 'gallery/eauphoto13.jpg'
Pic[13] = 'gallery/eauphoto14.jpg'
Pic[14] = 'gallery/eauphoto15.jpg'
Pic[15] = 'gallery/eauphoto16.jpg'
Pic[16] = 'gallery/eauphoto17.jpg'
Pic[17] = 'gallery/eauphoto18.jpg'
Pic[18] = 'gallery/eauphoto19.jpg'
Pic[19] = 'gallery/eauphoto20.jpg'
Pic[20] = 'gallery/eauphoto21.jpg'
Pic[21] = 'gallery/eauphoto22.jpg'
Pic[22] = 'gallery/eauphoto23.jpg'
Pic[23] = 'gallery/eauphoto24.jpg'
Pic[24] = 'gallery/eauphoto25.jpg'
Pic[25] = 'gallery/eauphoto26.jpg'
Pic[26] = 'gallery/eauphoto27.jpg'
Pic[27] = 'gallery/eauphoto28.jpg'
Pic[28] = 'gallery/eauphoto29.jpg'
Pic[29] = 'gallery/eauphoto30.jpg'
Pic[30] = 'gallery/eauphoto31.jpg'
Pic[31] = 'gallery/eauphoto32.jpg'
Pic[32] = 'gallery/eauphoto33.jpg'
Pic[33] = 'gallery/eauphoto34.jpg'
Pic[34] = 'gallery/eauphoto35.jpg'
Pic[35] = 'gallery/eauphoto36.jpg'
Pic[36] = 'gallery/eauphoto37.jpg'
Pic[37] = 'gallery/eauphoto38.jpg'
Pic[38] = 'gallery/eauphoto39.jpg'
Pic[39] = 'gallery/eauphoto40.jpg'
Pic[40] = 'gallery/eauphoto41.jpg'
Pic[41] = 'gallery/eauphoto42.jpg'
Pic[42] = 'gallery/eauphoto43.jpg'
Pic[43] = 'gallery/eauphoto44.jpg'
Pic[44] = 'gallery/eauphoto45.jpg'
Pic[45] = 'gallery/eauphoto46.jpg'
Pic[46] = 'gallery/eauphoto47.jpg'
Pic[47] = 'gallery/eauphoto48.jpg'
Pic[48] = 'gallery/eauphoto49.jpg'
Pic[49] = 'gallery/eauphoto50.jpg'
Pic[50] = 'gallery/eauphoto51.jpg'
Pic[51] = 'gallery/eauphoto52.jpg'
Pic[52] = 'gallery/eauphoto53.jpg'
Pic[53] = 'gallery/eauphoto54.jpg'
Pic[54] = 'gallery/eauphoto55.jpg'
Pic[55] = 'gallery/eauphoto56.jpg'
Pic[56] = 'gallery/eauphoto57.jpg'
Pic[57] = 'gallery/eauphoto58.jpg'
Pic[58] = 'gallery/eauphoto59.jpg'
Pic[59] = 'gallery/eauphoto60.jpg'
Pic[60] = 'gallery/eauphoto61.jpg'
Pic[61] = 'gallery/eauphoto62.jpg'
Pic[62] = 'gallery/eauphoto63.jpg'
Pic[63] = 'gallery/eauphoto64.jpg'
Pic[64] = 'gallery/eauphoto65.jpg'
Pic[65] = 'gallery/eauphoto66.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)
}
//runSlideShow();

//-->
