<!-- This script was written by Craig Corvin for Cut-N-Paste JavaScript (7/97). 

// -->

if (swapping == "yes") {
pict1 = new Image()
pict1.src = "MPEimage2.jpg"
pict2 = new Image()
pict2.src = "compuclass.jpg" 
pict3 = new Image()
pict3.src = "skulltour1.jpg"
pict4 = new Image()
pict4.src = "KAOS1.jpg" 
pict5 = new Image()
pict5.src = "stars.jpg"
pict6 = new Image()
pict6.src = "cat3final.jpg" 
pict7 = new Image()
pict7.src = "takeoff1.jpg"
pict8 = new Image()
pict8.src = "Hydro_lab1.jpg" 
pict9 = new Image()
pict9.src = "bridge01.jpg"
}

slides = 9
rotations = 25
speed = 3000

function nrunit() {
if (swapping == "yes") {
for (x=1, y=0 ; x < (slides*rotations); x=x+slides, y=0) {
setTimeout("document.MPEslides.src = pict1.src",((x + y) * speed))
y++; setTimeout("document.MPEslides.src = pict2.src",((x + y) * speed))
y++; setTimeout("document.MPEslides.src = pict3.src",((x + y) * speed))
y++; setTimeout("document.MPEslides.src = pict4.src",((x + y) * speed))
y++; setTimeout("document.MPEslides.src = pict5.src",((x + y) * speed))
y++; setTimeout("document.MPEslides.src = pict6.src",((x + y) * speed))
y++; setTimeout("document.MPEslides.src = pict7.src",((x + y) * speed))
y++; setTimeout("document.MPEslides.src = pict8.src",((x + y) * speed))
y++; setTimeout("document.MPEslides.src = pict9.src",((x + y) * speed))
}
}
}