<!-- Original:  CodeLifter.com (support@codelifter.com) -->
<!-- Web Site:  http://www.codelifter.com -->
<!-- Modified by Susan L. Bolander, Webworks7  -->
<!-- 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 slideShowSpeed3 = 4000;

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

var crossFadeDuration3 = 2;

var Pic3 = new Array();

var t3;

var j3 = 0;

var preLoad3 = new Array();

Pic3[0] = 'anne_gregerson_at_work_2.jpg'
Pic3[1] = 'anne_gregerson_at_work_3.jpg'
Pic3[2] = 'anne_gregerson_at_work_4.jpg'
Pic3[3] = 'anne_gregerson_at_work_1.jpg'


var p3 = Pic3.length;

function slideShow3()
{
  for (i3 = 0; i3 < p3; i3++)
  {
    preLoad3[i3] = new Image();
    preLoad3[i3].src = Pic3[i3];
  }

  runSlideShow3();
  
}

function runSlideShow3()
{
  if (document.all)
  {
    document.images.SlideShow3.style.filter="blendTrans(duration=2)";
    document.images.SlideShow3.style.filter="blendTrans(duration=crossFadeDuration3)";
    document.images.SlideShow3.filters.blendTrans.Apply();
  }

  document.images.SlideShow3.src = preLoad3[j3].src;
  
  if (document.all)
  {
    document.images.SlideShow3.filters.blendTrans.Play();
  }

  j3 = j3 + 1;
  if (j3 > (p3 - 1)) j3 = 0;
  t1 = setTimeout('runSlideShow3()', slideShowSpeed3);
}



