// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 5000

// Duration of crossfade (seconds)
var crossFadeDuration = 3

// Specify the image files
var Pic = new Array(); // don't touch this

Pic[0] = 'http://www.junkfunkies.com/images/quote1.gif'
Pic[1] = 'http://www.junkfunkies.com/images/quote2.gif'
Pic[2] = 'http://www.junkfunkies.com/images/quote3.gif'

var t = null
var counter = 0
var p = Pic.length

function runSlideShow(){
   counter++;
   if (counter >= 3)
   counter = 0;
   t = setTimeout('runSlideShow()', slideShowSpeed)
   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 = Pic[counter];
   if (document.all){
      document.images.SlideShow.filters.blendTrans.Play()
   }
}