
// (C) 2000 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this  header
// NS4-6,IE4-6
// Fade effect only in IE; 

var slideShowSpeed = 3000
var crossFadeDuration = 1
var Pic = new Array() 

Pic[0] = "images/lyme-0.jpg" 
Pic[1] = "images/lyme-1.jpg"
Pic[2] = "images/lyme-2.jpg"
Pic[3] = "images/lyme-3.jpg"
Pic[4] = "images/lyme-4.jpg" 
Pic[5] = "images/lyme-5.jpg"
Pic[6] = "images/lyme-6.jpg"
Pic[7] = "images/lyme-7.jpg"
Pic[8] = "images/lyme-8.jpg"
Pic[9] = "images/lyme-9.jpg"
Pic[10] = "images/lyme-10.jpg"
Pic[11] = "images/lyme-11.jpg" 
Pic[12] = "images/lyme-12.jpg"
Pic[13] = "images/lyme-13.jpg"
Pic[14] = "images/lyme-14.jpg"
Pic[15] = "images/lyme-15.jpg"
Pic[16] = "images/lyme-16.jpg"
Pic[17] = "images/lyme-17.jpg"
Pic[18] = "images/lyme-18.jpg"
Pic[19] = "images/lyme-19.jpg"
Pic[20] = "images/lyme-20.jpg"
Pic[21] = "images/lyme-21.jpg" 
Pic[22] = "images/lyme-22.jpg"
Pic[23] = "images/lyme-23.jpg"
Pic[24] = "images/lyme-24.jpg"
Pic[25] = "images/lyme-25.jpg"
Pic[26] = "images/lyme-26.jpg"
Pic[27] = "images/lyme-27.jpg"
Pic[28] = "images/lyme-28.jpg"
Pic[29] = "images/lyme-29.jpg"
Pic[30] = "images/lyme-30.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="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)
}

