// (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; degrades gracefully

// =======================================
// do not edit anything below this line
// =======================================
var slideShowEntry = 0
var slideShowLength = Pic.length

var preLoad = new Array()
for (i = 0; i < slideShowLength; i++){
   preLoad[i] = new Image()
   preLoad[i].src = Pic[i]
}

function runSlideShow(){
   var t
   
   if (!document.images.SlideShow) return;
   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[slideShowEntry].src
   if (document.all){
      document.images.SlideShow.filters.blendTrans.Play()
   }
   slideShowEntry = slideShowEntry + 1
   if (slideShowEntry > (slideShowLength-1)) slideShowEntry=0
   t = setTimeout('runSlideShow()', slideShowSpeed)
}

