// Set slideShowSpeed (milliseconds)
var pslideShowSpeed = 6000;

// Duration of crossfade (seconds)
var pcrossFadeDuration = 2;

// Specify the image files
var pyi = new Array();

// to add more images, just continue

// the pattern, adding to the array below

pyi[0] = 'education1.jpg';
pyi[1] = 'education2.jpg';
// do not edit anything below this line

var pt;
var pj = 0;
var pp = pyi.length;
var ppreLoad = new Array();
for (i = 0; i < pp; i++) {
ppreLoad[i] = new Image();
ppreLoad[i].src = pyi[i];

}

function prunSlideShow() {

  if (document.all) {
    document.images.EduShow.style.filter="blendTrans(duration=2)";
    document.images.EduShow.style.filter="blendTrans(duration=pcrossFadeDuration)";
    document.images.EduShow.filters.blendTrans.Apply();
  }

  document.images.EduShow.src = ppreLoad[pj].src;

  if (document.all) {
    document.images.EduShow.filters.blendTrans.Play();
  }

  pj = pj + 1;
  if (pj > (pp - 1)) pj = 0;
  pt = setTimeout('prunSlideShow()', pslideShowSpeed);
}

//  End -->

