picImages = new Array(
"images/01.jpg",
"images/02.jpg",
"images/03.jpg",
"images/04.jpg",
"images/05.jpg",
"images/06.jpg",
"images/07.jpg",
"images/08.jpg",
"images/09.jpg",
"images/10.jpg",
"images/11.jpg",
"images/12.jpg",
"images/13.jpg",
"images/14.jpg",
"images/15.jpg",
"images/16.jpg",
"images/17.jpg",
"images/18.jpg",
"images/19.jpg",
"images/20.jpg",
"images/21.jpg",
"images/22.jpg",
"images/23.jpg",
"images/24.jpg",
"images/25.jpg",
"images/26.jpg",
"images/27.jpg"
);

picCaption = new Array(
"Cadets get motivated about encampment",
"Encampment begins when you report in",
"Staff training and planning happens months in advance",
"Cadets get ready for A-10 firing range",
"You may get to go to an A-10 live firing range",
"Encampment ends with a sign out",
"Your hard work culminates with graduation",
"Staff prepares for Class A inspection",
"Rewarded for outstanding achievement",
"Cadets learn teamwork at encampment",
"Staff works hard to support your training",
"Cadets relax with bowling at social at the end",
"Cadets make new friends at encampment",
"Cadets enjoy tours at Fort Drum",
"Cadets learn from NYWG's top instructors",
"Encampment site, as seen from cadet o-flights",
"Staff works hard to support your training",
"Cadets learn from NYWG's top instructors",
"The NCO Academy trains NYWG's finest cadet NCOs",
"Cadets get drill and ceremonies training",
"Daily Honor flight score announcement- an important event",
"Cadets participate in physical fitness",
"NCO Academy cadets may get to rappel",
"NYWG's dedicated seniors for your support",
"Cadet staff enjoy a banquet after graduation",
"Cadet staff prepare in advance",
"Honor flight is an integral part of encampment"
);

thisPic = 0
imgCnt = picImages.length

/* function rotate() {if (document.images) {thisPic ++; if (thisPic == imgCnt) {thisPic = 0;};document.picFrame.src=picImages[thisPic];};}; */

randNum = Math.floor((Math.random() * imgCnt));
picName = picImages[randNum];
document.write('<img src="' + picName + '" border="0"><br><i><font size=-1>' + picCaption[randNum] + '</font></i>');

