// JavaScript Document
<!--

// Finish defining and activating the slideshow


// If you want some code to be called before or
// after the slide is updated, define the functions here

ss.pre_update_hook = function() {
  return;
}

if (document.images) {

  // Tell the slideshow which image object to use
  ss.image = document.images.ss_img;

  // Tell the slideshow the ID of the element
  // that will contain the text for the slide
  ss.textid = "ss_text";

  // Randomize the slideshow?
  // ss.shuffle();

  // Update the image and the text for the slideshow
  ss.update();

  // Auto-play the slideshow
  ss.play();
}

//-->