var arySFNTImages =  new Array("http://www.brothersltd.com/images/store_front_00.gif",
                               "http://www.brothersltd.com/images/store_front_01.jpg",
                               "http://www.brothersltd.com/images/store_front_02.jpg",
                               "http://www.brothersltd.com/images/store_front_03.jpg",
                               "http://www.brothersltd.com/images/store_front_04.jpg");
var curSFNTImage = 0;
var normDelay = 15000;
var specDelay = 25000;
var timeoutID; //= setTimeout("showNextSFNTImage()", specDelay);

function startSlideShow() {
  timeoutID = setTimeout("showNextSFNTImage()", specDelay);
}
function showNextSFNTImage() {
  var delay = normDelay;
  curSFNTImage++;
  if (curSFNTImage > arySFNTImages.length - 1) {
    curSFNTImage = 0;
    delay = specDelay;
  }
  document.images["sfntslide"].src = arySFNTImages[curSFNTImage];
  timeoutID = setTimeout("showNextSFNTImage()", delay);
}
