// =======================================// set the following variables// =======================================
// Set speed (milliseconds)
var speed = 2000
// 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] = '../artwork/animations/printing_network/frame_01.gif'
Pic[1] = '../artwork/animations/printing_network/frame_02.gif'
Pic[2] = '../artwork/animations/printing_network/frame_03.gif'
Pic[3] = '../artwork/animations/printing_network/frame_04.gif'
Pic[4] = '../artwork/animations/printing_network/frame_05.gif'
Pic[5] = '../artwork/animations/printing_network/frame_06.gif'
Pic[6] = '../artwork/animations/printing_network/frame_07.gif'
Pic[7] = '../artwork/animations/printing_network/frame_08.gif'
Pic[8] = '../artwork/animations/printing_network/frame_09.gif'
Pic[9] = '../artwork/animations/printing_network/frame_10.gif'
Pic[10] = '../artwork/animations/printing_network/frame_11.gif'
Pic[11] = '../artwork/animations/printing_network/frame_11.gif'
Pic[12] = '../artwork/animations/printing_network/frame_11.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.media.src = preLoad[j].src
	j = j + 1
	if (j > (p-1))
		j=0
	t = setTimeout('runSlideShow()', speed)
}

