var slideShowSpeed = 5300;
var crossFadeDuration = 10;
var Pic = new Array();
var PDesc = new Array();
Pic[0] = './gallery/Banquet1.jpg';
PDesc[0] = '2009 McClain Award winner - Dave DeAngelo & Presenter Ken Kaiser';
Pic[1] = './gallery/Banquet2.jpg';
PDesc[1] = '2009 AD of the Year - Jim Hayes and his wife';
Pic[2] = './gallery/Banquet3.jpg';
PDesc[2] = '2009/2010 Perfect Attendance Award winners';
Pic[3] = './gallery/Banquet4.jpg';
PDesc[3] = 'David DeAngelo';
Pic[4] = './gallery/Banquet5.jpg';
PDesc[4] = 'President Hager - Mark Riley - Steve Donahue - Kerry Flemming';
Pic[5] = './gallery/Banquet6.jpg';
PDesc[5] = 'Boys Regional and State Tournament Officials';
Pic[6] = './gallery/Banquet7.jpg';
PDesc[6] = 'Brian Kappler and "Gahann Bill" Special Award Winner';
Pic[7] = './gallery/Banquet8.jpg';
PDesc[7] = 'Past President Brian Kappler and AD of the year Jim Hayes';
Pic[8] = './gallery/Banquet9.jpg';
PDesc[8] = '2009 Jim Cameron Award winner Bud Tremain and presenter Jim Cameron';
var t;
var j = 0;
var pt = Pic.length;
var preLoad = new Array();
for (i = 0; i < pt; 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;
   document.getElementById("text2").innerHTML = PDesc[j];
   if (document.all){
      document.images.SlideShow.filters.blendTrans.Play();
   }
   j = j + 1;
   if (j > (pt-1)) j=0;
   t = setTimeout('runSlideShow()', slideShowSpeed);
}
