// (C) 2000 www.CodeLifter.com
// http://www.codelifter.com
var speed = 4000
var Pic = new Array()
Pic[0] = 'post_its/box_1.jpg'
Pic[1] = 'post_its/box_2.jpg'
Pic[2] = 'post_its/box_3.jpg'
Pic[3] = 'post_its/box_4.jpg'
Pic[4] = 'post_its/box_5.jpg'
Pic[5] = 'post_its/box_6.jpg'
Pic[6] = 'post_its/box_7.jpg'
Pic[7] = 'post_its/box_8.jpg'
Pic[8] = 'post_its/box_9.jpg'
Pic[9] = 'post_its/box_10.jpg'
Pic[10] = 'post_its/box_11.jpg'
Pic[11] = 'post_its/box_12.jpg'
Pic[12] = 'post_its/box_13.jpg'
Pic[13] = 'post_its/box_14.jpg'
Pic[14] = 'post_its/box_15.jpg'
Pic[15] = 'post_its/box_16.jpg'
Pic[16] = 'post_its/box_17.jpg'
Pic[17] = 'post_its/box_18.jpg'
Pic[18] = 'post_its/box_19.jpg'
Pic[19] = 'post_its/box_20.jpg'
Pic[20] = 'post_its/box_21.jpg'
Pic[21] = 'post_its/box_22.jpg'
Pic[22] = 'post_its/box_23.jpg'
Pic[23] = 'post_its/box_24.jpg'
Pic[24] = 'post_its/box_25.jpg'
Pic[25] = 'post_its/box_26.jpg'
Pic[26] = 'post_its/box_27.jpg'

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)
}

