<!--
// Create the slideshow object
ss = new slideshow("ss");

// Set the delay between slides, 1000 = 1 sec
 ss.timeout = 5000;

// Create the slides and add them to the slideshow.
s = new slide();
s.src =  "images/homeof_fbd.jpg";
ss.add_slide(s);

// Create the slides and add them to the slideshow.
s = new slide();
s.src =  "images/homeof_cimd.jpg";
ss.add_slide(s);

// Create the slides and add them to the slideshow.
s = new slide();
s.src =  "images/homeof_bctc.jpg";
ss.add_slide(s);


// The following loop sets an attribute for all of the slides.
for (var i=0; i < ss.slides.length; i++) {
  s = ss.slides[i];
  s.link = "stallions.htm";
}

//-->
