<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
// (C) 2001 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this  header

// =======================================
// set the following variables
// =======================================

// Set speed (milliseconds)
var speed = 9000

// Specify the image files
var Pic = new Array() // don't touch this
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = 'slideshow/6.jpg'
Pic[1] = 'slideshow/4.jpg'
Pic[2] = 'slideshow/8.jpg'
Pic[3] = 'slideshow/9.jpg'
Pic[4] = 'slideshow/1.jpg'
Pic[5] = 'slideshow/2.jpg'
Pic[6] = 'slideshow/3.jpg'
Pic[7] = 'slideshow/7.jpg'
Pic[8] = 'slideshow/5.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 runBGSlideShow(){
   if (document.body){
   document.body.background = Pic[j];
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runBGSlideShow()', speed)
   }
}
//  End -->