if (document.images) {
  SLIDES3.image = document.images.SLIDES3IMG;

// Create a function to ramp up the image opacity in Mozilla
var fadein_opacity3 = 0.04;
var fadein_img3 = SLIDES3.image;
function fadein3(opacity) {
  if (typeof opacity != 'undefined') { fadein_opacity3 = opacity; }
  if (fadein_opacity3 < 0.99 && fadein_img3 && fadein_img3.style &&
      typeof fadein_img3.style.MozOpacity != 'undefined') {

    fadein_opacity3 += .05;
    fadein_img3.style.MozOpacity = fadein_opacity3;
    setTimeout("fadein3()", 50);
  }
}

// Tell the slideshow to call our function whenever the slide is changed
SLIDES3.post_update_hook = function() { fadein3(0.04); }
}
if (document.images.SLIDES3IMG) {
  SLIDES3.image = document.images.SLIDES3IMG;
  SLIDES3.update();
  SLIDES3.play();
}

