<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 5000;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;
// Specify the image files
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = 'archives/20111001/p01.jpg'
Pic[1] = 'archives/20111001/p02.jpg'
Pic[2] = 'archives/20111001/p03.jpg'
Pic[3] = 'archives/20111001/p04.jpg'
Pic[4] = 'archives/20111001/p05.jpg'
Pic[5] = 'archives/20111001/p06.jpg'
Pic[6] = 'archives/20111001/p07.jpg'
Pic[7] = 'archives/20111001/p08.jpg'
Pic[8] = 'archives/20111001/p09.jpg'
Pic[9] = 'archives/20111001/p10.jpg'
Pic[10] = 'archives/20111001/p11.jpg'
Pic[11] = 'archives/20111001/p12.jpg'
Pic[12] = 'archives/20111001/p13.jpg'
Pic[13] = 'archives/20111001/p14.jpg'
Pic[14] = 'archives/20111001/p15.jpg'
Pic[15] = 'archives/20111001/p16.jpg'
Pic[16] = 'archives/20111001/p17.jpg'
Pic[17] = 'archives/20111001/p18.jpg'
Pic[18] = 'archives/20111001/p19.jpg'
Pic[19] = 'archives/20111001/p20.jpg'


// 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() {
if (document.all) {
document.images.slideshow.style.filter="blendTrans(duration=2)";
document.images.slideshow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.slideshow.filters.blendTrans.Apply();
}
document.images.slideshow.src = preLoad[j].src;
if (document.all) {
document.images.slideshow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runslideshow()', slideShowSpeed);
}
document.write('\
<div id="photos" style="color: white; position: absolute; left: 70px; top: 650px;">\
<table id="SlideTable" style="text-align: center; font-size: 14px" height="510" border="0" cellpadding="0" cellspacing="0" bgcolor="black">\
<tbody>\
	<tr bgcolor="silver">\
	<td colspan="3" style="font-weight: bold; text-align: left; font-size: 14px">October 1, 2011 - Mustang Marching Contest</td>\
	</tr>\
	<tr><td colspan="3" height="12">&nbsp;</td></tr>\
	<tr>\
	<td width="78">&nbsp;</td>\
	<td style="font-weight: bold; text-align: center" id="VU" height="480" width="640"><img src="images/WHSJAG.jpg" name="slideshow" height="480" width="640"></td>\
	<td width="79">&nbsp;</td>\
	</tr>\
	<tr><td colspan="3" height="12">&nbsp;</td></tr>\
	<tr bgcolor="silver"><td colspan="3">&nbsp;</td>\
</tbody>\
</table>\
</div>\
');


