var sind = 0;
var sint = 5000;
var sgo = true;
var susp = false;

function showit()
{ if (sint > 11)
  { ++sind; if (sind > scnt) {sind=0;}
    document.getElementById("shower").src = "slideshow/" + images[sind];
    setTimeout("showit()",sint); } }

function showprev()
{ --sind; sint = 11;
  document.getElementById("speedshow").selectedIndex = 7;
  if (sind < 0) {sind=scnt;}
  document.getElementById("shower").src = "slideshow/" + images[sind];
  return false; }

function shownext()
{ ++sind; sint = 11;
  document.getElementById("speedshow").selectedIndex = 7;
  if (sind > scnt) {sind=0;}
  document.getElementById("shower").src = "slideshow/" + images[sind];
  return false; }

function showspeed()
{ var x = sint;
  sint = document.getElementById("speedshow").value;
  if (x == 11) {setTimeout("showit()",sint);}
  return false; }

function showslide() {slide(); setTimeout("showit()",sint);}


