// (C) 2000 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 = 4000
 
// 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] = 'images/1logo.gif'
Pic[1] = 'images/2logo.gif'
Pic[2] = 'images/3logo.gif'
Pic[3] = 'images/4logo.gif'
Pic[4] = 'images/5logo.gif'
Pic[5] = 'images/6logo.gif'
Pic[6] = 'images/7logo.gif'
Pic[7] = 'images/8logo.gif'
Pic[8] = 'images/9logo.gif'
Pic[9] = 'images/10logo.gif'
Pic[10] = 'images/11logo.gif'
Pic[11] = 'images/12logo.gif'
Pic[12] = 'images/13logo.gif'
Pic[13] = 'images/14logo.gif'
Pic[14] = 'images/15logo.gif'
Pic[15] = 'images/16logo.gif'
Pic[16] = 'images/17logo.gif'
Pic[17] = 'images/18logo.gif'
Pic[18] = 'images/19logo.gif'
Pic[19] = 'images/20logo.gif'
Pic[20] = 'images/21logo.gif'
Pic[21] = 'images/22logo.gif'
Pic[22] = 'images/23logo.gif'
 
// =======================================
// 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 runSlideShow(){
   document.images.SlideShow.src = preLoad[j].src
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runSlideShow()', speed)
}
