<!--
// Finish defining and activating the slideshow

// Set up the select list with the slide titles
function config_ss_select() {
  //var selectlist = document.ss_form.ss_select;
 // selectlist.options.length = 0;
  //for (var i = 0; i < ss.slides.length; i++) {
  //  selectlist.options[i] = new Option();
  //  selectlist.options[i].text = (i + 1) + '. ' + ss.slides[i].title;
  //}
  //selectlist.selectedIndex = ss.current;
}

// 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;
}

ss.post_update_hook = function() {
  // For the select list with the slide titles,
  // set the selected item to the current slide
  //document.ss_form.ss_select.selectedIndex = this.current;
  return;
}

if (document.images) {
  ss.image = document.images.ss_img;
  ss.textid = "ss_text";
  // ss.shuffle();
 // config_ss_select();
  ss.update();
  //ss.play();
}
//-->