<!--
// Create the slideshow object
ss = new slideshow("ss");

// Set the delay between slides, 1000 = 1 sec
// ss.timeout = 3000;

// Create the slides and add them to the slideshow.
s = new slide();
s.src =  "img/ss_ts_pic13.jpg";
s.text = "Sandra, Destry Haught, Byron Haught and Gary -<br />Destry and Byron receiving their award for being Co-Champions of the Buckle Series in Payson";
ss.add_slide(s);

// Create the slides and add them to the slideshow.
s = new slide();
s.src =  "img/ss_ts_pic14.jpg";
s.text = "Byron, Destry and Joe Haught receive their award for being the Winning Team at Payson Team Sorting";
ss.add_slide(s);

// Create the slides and add them to the slideshow.
s = new slide();
s.src =  "img/ss_ts_pic15.jpg";
s.text = "Cliff Uptain of Queen Creek cutting out the steer he needs to sort next";
ss.add_slide(s);

// Create the slides and add them to the slideshow.
s = new slide();
s.src =  "img/ss_ts_pic1.jpg";
s.text = "Gary at our first Team Sorting - 3/22/08 - Payson Event Center";
ss.add_slide(s);

// Create the slides and add them to the slideshow.
s = new slide();
s.src =  "img/ss_ts_pic2.jpg";
s.text = "Gary, Destry and Skeeto demonstrating our format";
ss.add_slide(s);

// Create the slides and add them to the slideshow.
s = new slide();
s.src =  "img/ss_ts_pic3.jpg";
s.text = "Linda Takeda, Shea Nelson & Terri Haught working";
ss.add_slide(s);

// Create the slides and add them to the slideshow.
s = new slide();
s.src =  "img/ss_ts_pic4.jpg";
s.text = "Sally Wills, Mason Ridley and Bill Gibson working";
ss.add_slide(s);

// Create the slides and add them to the slideshow.
s = new slide();
s.src =  "img/ss_ts_pic5.jpg";
s.text = "Sally Wills, Mason Ridley and Bill Gibson working";
ss.add_slide(s);

// Create the slides and add them to the slideshow.
s = new slide();
s.src =  "img/ss_ts_pic6.jpg";
s.text = "Byron Haught, Jill Ridley and Felicia Daddabo -<br>Winning Team of the first sorting";
ss.add_slide(s);

// Create the slides and add them to the slideshow.
s = new slide();
s.src =  "img/ss_ts_pic7.jpg";
s.text = "Gary settling the herd for second sorting";
ss.add_slide(s);

// Create the slides and add them to the slideshow.
s = new slide();
s.src =  "img/ss_ts_pic8.jpg";
s.text = "Norton Jacobs, Linda White & Jill Ridley working";
ss.add_slide(s);

// Create the slides and add them to the slideshow.
s = new slide();
s.src =  "img/ss_ts_pic9.jpg";
s.text = "10 Yr. Old Kylie Ridley working to keep her steer sorted";
ss.add_slide(s);

// Create the slides and add them to the slideshow.
s = new slide();
s.src =  "img/ss_ts_pic10.jpg";
s.text = "Destry Haught, Sally Wills & Shea Nelson -<br>Winning Team of second sorting";
ss.add_slide(s);

// Create the slides and add them to the slideshow.
s = new slide();
s.src =  "img/ss_ts_pic11.jpg";
s.text = "Linda Takeda, Pat Woolsey & Terri Haught working";
ss.add_slide(s);

// Create the slides and add them to the slideshow.
s = new slide();
s.src =  "img/ss_ts_pic12.jpg";
s.text = "Trevor Haught - cutting off his steer to be sorted";
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 = "";
}

//-->
