<!-------------Slide Show for 75th Anniversary Page ---------------------->

<!-- Original:  CodeLifter.com (support@codelifter.com) -->
<!-- Web Site:  http://www.codelifter.com -->
<!-- Modified by Susan L. Bolander, Webworks7, to run two slide shows simultaneously-->
<!-- and to display ALT tags for each image -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

// Set slideShowSpeed (milliseconds)

var slideShowSpeed4 = 4000;

// Duration of crossfade (seconds) This does not work in Netscape, slides just switch without a fade

var crossFadeDuration4 = 2;

var Pic4 = new Array();
var Alt4 = new Array();

var t4;

var j4 = 0;

var preLoad4 = new Array();

Pic4[0] = 'home_photo_1.jpg'
Pic4[1] = 'home_photo_9.jpg'
Pic4[2] = 'home_photo_3.jpg'
Pic4[3] = 'home_photo_4.jpg'
Pic4[4] = 'home_photo_5.jpg'
Pic4[5] = 'home_photo_6.jpg'
Pic4[6] = 'home_photo_7.jpg'
Pic4[7] = 'home_photo_8.jpg'
Pic4[8] = 'home_photo_2.jpg'

Alt4[0] = ''
Alt4[1] = ''
Alt4[2] = ''
Alt4[3] = ''
Alt4[4] = ''
Alt4[5] = ''
Alt4[6] = ''
Alt4[7] = ''
Alt4[8] = ''

var p4 = Pic4.length;

function slideShow4()
{
  for (i4 = 0; i4 < p4; i4++)
  {
    preLoad4[i4] = new Image();
    preLoad4[i4].src = Pic4[i4];
  }

  runSlideShow4();
  
}

function runSlideShow4()
{
  if (document.all)
  {
    document.images.SlideShow4.style.filter="blendTrans(duration=2)";
    document.images.SlideShow4.style.filter="blendTrans(duration=crossFadeDuration4)";
    document.images.SlideShow4.filters.blendTrans.Apply();
  }

  document.images.SlideShow4.src = preLoad4[j4].src;
  document.images.SlideShow4.alt = Alt4[j4];
  
  if (document.all)
  {
    document.images.SlideShow4.filters.blendTrans.Play();
  }

  j4 = j4 + 1;
  if (j4 > (p4 - 1)) j4 = 0;
  t1 = setTimeout('runSlideShow4()', slideShowSpeed4);
}




