// (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 = 3500

// 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] = 'http://img228.imageshack.us/img228/7693/dsc01589op1.th.jpg'
Pic[1] = 'http://img151.imageshack.us/img151/9075/dsc02193e.th.jpg'
Pic[2] = 'http://img84.imageshack.us/img84/6206/dsc01303ef0.th.jpg'
Pic[3] = 'http://img134.imageshack.us/img134/727/dsc01058ek6.th.jpg'
Pic[4] = 'http://img204.imageshack.us/img204/6084/dsc01839e.th.jpg'
Pic[5] = 'http://img84.imageshack.us/img84/1112/dsc00983cmy9.th.jpg'
Pic[6] = 'http://img156.imageshack.us/img156/9250/dsc02062.th.jpg'
Pic[7] = 'http://img156.imageshack.us/img156/447/dsc02078m.th.jpg'
Pic[8] = 'http://img145.imageshack.us/img145/7689/dsc01192ui1.th.jpg'
Pic[9] = 'http://img55.imageshack.us/img55/2116/zdjcienowe18yy6.th.jpg'
Pic[10] = 'http://img151.imageshack.us/img151/9423/dsc02192.th.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 runSlideShow(){
   document.images.SlideShow.src = preLoad[j].src
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runSlideShow()', speed)
}
