// JavaScript Document
<!--
// (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

// =======================================
// set the following variables
// =======================================

// Set slideShowSpeed (milliseconds)
var TheslideShowSpeed = 5000

// Duration of crossfade (seconds)
var ThecrossFadeDuration = 3

// Specify the image files
var Pictures = new Array() // don't touch this
// to add more images, just continue
// the pattern, adding to the array below 	

	Pictures[0] = 'images/sideshow/siderot10.jpg'
	Pictures[1] = 'images/sideshow/siderot09.jpg'
	Pictures[2] = 'images/sideshow/siderot08.jpg'
	Pictures[3] = 'images/sideshow/siderot07.jpg'
	Pictures[4] = 'images/sideshow/siderot06.jpg'
	Pictures[5] = 'images/sideshow/siderot05.jpg'
	Pictures[6] = 'images/sideshow/siderot04.jpg'
	Pictures[7] = 'images/sideshow/siderot03.jpg'
	Pictures[8] = 'images/sideshow/siderot02.jpg'
	Pictures[9] = 'images/sideshow/siderot01.jpg'


// =======================================
// do not edit anything below this line
// =======================================

var t
var j = 0
var A = Pictures.length

var preLoadPictures = new Array()
for (i = 0; i < A; i++){
   preLoadPictures[i] = new Image()
   preLoadPictures[i].src = Pictures[i]
}

function runTheSlideShow(){
   if (document.all)
	{
      document.images.SlideShow.style.filter="blendTrans(duration=2)"
      document.images.SlideShow.style.filter="blendTrans(duration=ThecrossFadeDuration)"
      document.images.SlideShow.filters.blendTrans.Apply()      
   	}
   document.images.SlideShow.src = preLoadPictures[j].src
   if (document.all)
	{
      		document.images.SlideShow.filters.blendTrans.Play()
   	}
   	j = j + 1
   	if (j > (A-1)) j=0
   	t = setTimeout('runTheSlideShow()', TheslideShowSpeed)
}
-->
