<!-- Original:  D. Keith Higgs (dkh2@po.cwru.edu) -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var timeDelay = 2.5; // change delay time in seconds

<!--NOTE: All picture locations must be fully qualified (i.e. the image location must be completely spelled out).-->

var Pix = new Array
("http://uwadmnweb.uwyo.edu/AirROTC/images/SlideShow/UW_Slideshow%20(0)r.JPG" 
,"http://uwadmnweb.uwyo.edu/AirROTC/images/SlideShow/UW_Slideshow%20(1)r.JPG" 
,"http://uwadmnweb.uwyo.edu/AirROTC/images/SlideShow/UW_Slideshow%20(2)r.JPG" 
,"http://uwadmnweb.uwyo.edu/AirROTC/images/SlideShow/UW_Slideshow%20(3)r.JPG" 
,"http://uwadmnweb.uwyo.edu/AirROTC/images/SlideShow/UW_Slideshow%20(4)r.JPG" 
,"http://uwadmnweb.uwyo.edu/AirROTC/images/SlideShow/UW_Slideshow%20(5)r.JPG" 
,"http://uwadmnweb.uwyo.edu/AirROTC/images/SlideShow/UW_Slideshow%20(6)r.JPG" 
,"http://uwadmnweb.uwyo.edu/AirROTC/images/SlideShow/UW_Slideshow%20(7)r.JPG" 
,"http://uwadmnweb.uwyo.edu/AirROTC/images/SlideShow/UW_Slideshow%20(8)r.JPG" 
,"http://uwadmnweb.uwyo.edu/AirROTC/images/SlideShow/UW_Slideshow%20(9)r.JPG" 
,"http://uwadmnweb.uwyo.edu/AirROTC/images/SlideShow/UW_Slideshow%20(10)r.JPG" 
,"http://uwadmnweb.uwyo.edu/AirROTC/images/SlideShow/UW_Slideshow%20(11)r.JPG" 
,"http://uwadmnweb.uwyo.edu/AirROTC/images/SlideShow/UW_Slideshow%20(12)r.JPG" 
,"http://uwadmnweb.uwyo.edu/AirROTC/images/SlideShow/UW_Slideshow%20(13)r.JPG" 
,"http://uwadmnweb.uwyo.edu/AirROTC/images/SlideShow/UW_Slideshow%20(14)r.JPG" 
,"http://uwadmnweb.uwyo.edu/AirROTC/images/SlideShow/UW_Slideshow%20(15)r.JPG" 
,"http://uwadmnweb.uwyo.edu/AirROTC/images/SlideShow/UW_Slideshow%20(16)r.JPG" 
);
var howMany = Pix.length;
timeDelay = 1000 * timeDelay;
var PicCurrentNum = 0;
var PicCurrent = new Image();
PicCurrent.src = Pix[PicCurrentNum];

//The following line causes the slideshow script to work properly
//document.write("<q> . </q>");

function startPix() {
slideshow();  //Load first picture into picture frame
setInterval("slideshow()", timeDelay);
}
function slideshow() {
if (PicCurrentNum == howMany) {
	PicCurrentNum = 0;
}
PicCurrent.src = Pix[PicCurrentNum];
document["UWSlideShow"].src = PicCurrent.src;
PicCurrentNum++;
}
//  End -->