<!--
var slideShowSpeed = 2000;     // Set slideShowSpeed (milliseconds).
var crossFadeDuration = 3;    // Duration of crossfade (seconds).

// Specify the image files
var PicLeft = new Array()
var PicCenter = new Array()
var PicRight = new Array()
// To add more images, just continue the pattern, adding to the array below-

PicLeft[0] = 'images/slideshow/10L.jpg'
PicLeft[1] = 'images/slideshow/2L.jpg'
PicLeft[2] = 'images/slideshow/3L.jpg'
PicLeft[3] = 'images/slideshow/4L.jpg'
PicLeft[4] = 'images/slideshow/5L.jpg'
PicLeft[5] = 'images/slideshow/6L.jpg'
PicLeft[6] = 'images/slideshow/7L.jpg'
PicLeft[7] = 'images/slideshow/8L.jpg'
PicLeft[8] = 'images/slideshow/9L.jpg'
PicLeft[9] = 'images/slideshow/91L.jpg'
PicLeft[10] = 'images/slideshow/1L.jpg'

PicCenter[0] = 'images/slideshow/10M.jpg'
PicCenter[1] = 'images/slideshow/2M.jpg'
PicCenter[2] = 'images/slideshow/3M.jpg'
PicCenter[3] = 'images/slideshow/4M.jpg'
PicCenter[4] = 'images/slideshow/5M.jpg'
PicCenter[5] = 'images/slideshow/6M.jpg'
PicCenter[6] = 'images/slideshow/7M.jpg'
PicCenter[7] = 'images/slideshow/8M.jpg'
PicCenter[8] = 'images/slideshow/9M.jpg'
PicCenter[9] = 'images/slideshow/91M.jpg'
PicCenter[10] = 'images/slideshow/1M.jpg'

PicRight[0] = 'images/slideshow/10R.jpg'
PicRight[1] = 'images/slideshow/2R.jpg'
PicRight[2] = 'images/slideshow/3R.jpg'
PicRight[3] = 'images/slideshow/4R.jpg'
PicRight[4] = 'images/slideshow/5R.jpg'
PicRight[5] = 'images/slideshow/6R.jpg'
PicRight[6] = 'images/slideshow/7R.jpg'
PicRight[7] = 'images/slideshow/8R.jpg'
PicRight[8] = 'images/slideshow/9R.jpg'
PicRight[9] = 'images/slideshow/91R.jpg'
PicRight[10] = 'images/slideshow/1R.jpg'

// ==================================================
// No need to edit anything below this line :^) ...
// ==================================================

var timeIt
var pCount = 0            // Running counter for pictures.
var pLen = PicLeft.length

var preLoadLeft = new Array()
var preLoadCenter = new Array()
var preLoadRight = new Array()

for (var i=0; i<pLen; i++)
{    
	preLoadLeft[i] = new Image();
    preLoadLeft[i].src = PicLeft[i];

	preLoadCenter[i] = new Image();
    preLoadCenter[i].src = PicCenter[i];

	preLoadRight[i] = new Image();
    preLoadRight[i].src = PicRight[i];
}

function runSlideShowLeft()
{  
	if (document.all)
    {
      document.images.SlideShowLeft.style.filter="blendTrans(duration=2)"
      document.images.SlideShowLeft.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShowLeft.filters.blendTrans.Apply()   
    }


   document.images.SlideShowLeft.src = preLoadLeft[pCount].src

    if (document.all)
    {    
		document.images.SlideShowLeft.filters.blendTrans.Play()
    }
    timeIt = setTimeout('runSlideShowRight()', slideShowSpeed);
}

function runSlideShowCenter()
{    
	if (document.all)
    {
      document.images.SlideShowCenter.style.filter="blendTrans(duration=2)"
      document.images.SlideShowCenter.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShowCenter.filters.blendTrans.Apply()    
	 }

    document.images.SlideShowCenter.src = preLoadCenter[pCount].src
	
    if (document.all)
    {    
		document.images.SlideShowCenter.filters.blendTrans.Play()
	}
   timeIt = setTimeout('runSlideShowLeft()', slideShowSpeed)
}

function runSlideShowRight()
{    if (document.all)
    {
      document.images.SlideShowRight.style.filter="blendTrans(duration=2)"
      document.images.SlideShowRight.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShowRight.filters.blendTrans.Apply()   
	}


    document.images.SlideShowRight.src = preLoadRight[pCount].src
	
    if (document.all)
    {    
		document.images.SlideShowRight.filters.blendTrans.Play()
	}
    pCount = (pCount + 1) % pLen
    timeIt = setTimeout('runSlideShowLeftA()', slideShowSpeed)
}

function runSlideShowLeftA()
{    if (document.all)
    {
      document.images.SlideShowLeft.style.filter="blendTrans(duration=2)"
      document.images.SlideShowLeft.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShowLeft.filters.blendTrans.Apply()   
    }


   document.images.SlideShowLeft.src = preLoadLeft[pCount].src

    if (document.all)
    {    
		document.images.SlideShowLeft.filters.blendTrans.Play()
    }
    timeIt = setTimeout('runSlideShowRightA()', slideShowSpeed)
}

function runSlideShowCenterA()
{   
	if (document.all)
    {
      document.images.SlideShowCenter.style.filter="blendTrans(duration=2)"
      document.images.SlideShowCenter.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShowCenter.filters.blendTrans.Apply()    
	 }

    document.images.SlideShowCenter.src = preLoadCenter[pCount].src
	
    if (document.all)
    {    
		document.images.SlideShowCenter.filters.blendTrans.Play()
	}
	
	pCount = (pCount + 1) % pLen
    timeIt = setTimeout('runSlideShowCenter()', slideShowSpeed)
}

function runSlideShowRightA()
{    if (document.all)
    {
      document.images.SlideShowRight.style.filter="blendTrans(duration=2)"
      document.images.SlideShowRight.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShowRight.filters.blendTrans.Apply()   
	}


    document.images.SlideShowRight.src = preLoadRight[pCount].src
	
    if (document.all)
    {    
		document.images.SlideShowRight.filters.blendTrans.Play()
	}
    timeIt = setTimeout('runSlideShowCenterA()', slideShowSpeed)
}
//-->