<!--
// 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 =  "images/ss_pic1.jpg";
s.text = "Cave Creek Cutting Horse Association";
ss.add_slide(s);

s = new slide();
s.src =  "images/ss_pic2.jpg";
s.text = "Join Us Today - Click Photo for Membership Info";
ss.add_slide(s);

// Create the slides and add them to the slideshow.
s = new slide();
s.src =  "images/ss_pic3.jpg";
s.text = "Cave Creek Cutting Horse Association";
ss.add_slide(s);

s = new slide();
s.src =  "images/ss_pic4.jpg";
s.text = "Join Us Today - Click Photo for Membership Info";
ss.add_slide(s);

// Create the slides and add them to the slideshow.
s = new slide();
s.src =  "images/ss_pic5.jpg";
s.text = "Cave Creek Cutting Horse Association";
ss.add_slide(s);

s = new slide();
s.src =  "images/ss_pic6.jpg";
s.text = "Join Us Today - Click Photo for Membership Info";
ss.add_slide(s);

// Create the slides and add them to the slideshow.
s = new slide();
s.src =  "images/ss_pic7.jpg";
s.text = "Cave Creek Cutting Horse Association";
ss.add_slide(s);

s = new slide();
s.src =  "images/ss_pic8.jpg";
s.text = "Join Us Today - Click Photo for Membership Info";
ss.add_slide(s);

// Create the slides and add them to the slideshow.
s = new slide();
s.src =  "images/ss_pic9.jpg";
s.text = "";
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 = "membership.html";
}

//-->
