<!-- 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 = 5000

// 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] = '/logo/1.jpg'
Pic[1] = '/logo/2.jpg'
Pic[2] = '/logo/3.jpg'
Pic[3] = '/logo/4.jpg'
Pic[4] = '/logo/5.jpg'
Pic[5] = '/logo/6.jpg'
Pic[6] = '/logo/7.jpg'
Pic[7] = '/logo/8.jpg'
Pic[8] = '/logo/9.jpg'
Pic[9] = '/logo/10.jpg'
Pic[10] = '/logo/11.jpg'
Pic[11] = '/logo/12.jpg'
Pic[12] = '/logo/13.jpg'
Pic[13] = '/logo/14.jpg'
Pic[14] = '/logo/15.jpg'
Pic[15] = '/logo/16.jpg'
Pic[16] = '/logo/17.jpg'
Pic[17] = '/logo/18.jpg'
Pic[18] = '/logo/19.jpg'
Pic[19] = '/logo/20.jpg'
Pic[20] = '/logo/21.jpg'
Pic[21] = '/logo/22.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.img1.src = Pic[j];
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runBGSlideShow()', speed)
   }
}
//  End -->
