var slideShowSpeed = 5300;
var crossFadeDuration = 10;
var Pic = new Array();
var PDesc = new Array();
Pic[0] = './gallery/IMG_5989.JPG';
PDesc[0] = 'Secretary Brown @ Business Meeting';
Pic[1] = './gallery/IMG_5991.JPG';
PDesc[1] = 'President Carter @ Business Meeting';
Pic[2] = './gallery/IMG_5992.jpg';
PDesc[2] = 'Business Meeting 2011';
Pic[3] = './gallery/IMG_5993.jpg';
PDesc[3] = 'Business Meeting 2011';
Pic[4] = './gallery/IMG_6090.JPG';
PDesc[4] = 'McLain Award  winner - Marie Anthony';
Pic[5] = './gallery/IMG_6086.JPG';
PDesc[5] = 'Cameron Award Winner Bill Mooney / Rich King presenter';
Pic[6] = './gallery/IMG_6083.JPG';
PDesc[6] = 'AD of the Year - Eric Music  - Beechcroft H S';
Pic[7] = './gallery/IMG_6040.JPG';
PDesc[7] = 'Mr High School Sports - Larry Larson';
Pic[8] = './gallery/IMG_6019.JPG';
PDesc[8] = 'Vice President King';
Pic[9] = './gallery/IMG_6036.JPG';
PDesc[9] = 'Banquet Speaker Dr Jim Burson';
Pic[10] = './gallery/IMG_6004.JPG';
PDesc[10] = 'Past President John Campbell and Marie Anthony';
Pic[11] = './gallery/IMG_6011.JPG';
PDesc[11] = 'Past President Jack Ryan';
Pic[12] = './gallery/IMG_6052.JPG';
PDesc[12] = 'LARRY LARSON';
Pic[13] = './gallery/IMG_6066.JPG';
PDesc[13] = 'DALE VANHOOSE';
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);
}

