<!--
// 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/0509_00.jpg";
//s.link = "http://www.bestwestern.com";
//s.text = "Welcome to the Texas Star Ranch";
//ss.add_slide(s);

s = new slide();
s.src = "images/0509_01.jpg";
//s.link = "http://www.lowes.com";
s.text = "Welcome to the Texas Star Ranch";
ss.add_slide(s);

s = new slide();
s.src = "images/0509_02.jpg";
//s.link = "http://www.ag-power.com";
s.text = "Welcome to the Texas Star Ranch";
ss.add_slide(s);

s = new slide();
s.src = "images/0509_03.jpg";
//s.link = "http://www.chilis.com";
s.text = "Welcome to the Texas Star Ranch";
ss.add_slide(s);

s = new slide();
s.src = "images/0509_04.jpg";
//s.link = "http://www.legacyaca.com";
s.text = "Welcome to the Texas Star Ranch";
ss.add_slide(s);

s = new slide();
s.src = "images/0509_05.jpg";
//s.link = "http://www.comfortsuites.com";
s.text = "Welcome to the Texas Star Ranch";
ss.add_slide(s);

s = new slide();
s.src = "images/0509_06.jpg";
//s.link = "http://www.tractorsupply.com";
s.text = "Welcome to the Texas Star Ranch";
ss.add_slide(s);

s = new slide();
s.src = "images/0509_07.jpg";
//s.link = "http://www.sslivestockauctions.com";
s.text = "Welcome to the Texas Star Ranch";
ss.add_slide(s);

s = new slide();
s.src = "images/0509_08.jpg";
//s.link = "http://www.walmart.com";
s.text = "Welcome to the Texas Star Ranch";
ss.add_slide(s);

s = new slide();
s.src = "images/0509_09.jpg";
//s.link = "http://www.walmart.com";
s.text = "Welcome to the Texas Star Ranch";
ss.add_slide(s);

s = new slide();
s.src = "images/0509_10.jpg";
//s.link = "http://www.walmart.com";
s.text = "Welcome to the Texas Star Ranch";
ss.add_slide(s);

s = new slide();
s.src = "images/0509_11.jpg";
//s.link = "http://www.walmart.com";
s.text = "Welcome to the Texas Star Ranch";
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.target = "_blank";
}

//-->

