// Create the slideshow object
ss = new slideshow("ss");

// Set the delay between slides, 1000 = 1 sec
// ss.timeout = 3000;

// By default, all of the slideshow images are prefetched.
// If you have a large number of slides you can limit the
// number of images that are prefetched.
ss.prefetch = 2;

// By default the slideshow will repeat when you get to the end.
// ss.repeat = false;

// Create the slides and add them to the slideshow.
s = new slide();
s.src =  "images/watch_01_t.jpg";
s.link = "watch_01.html";
ss.add_slide(s);

s = new slide();
s.src =  "images/watch_02_t.jpg";
s.link = "watch_02.html";
ss.add_slide(s);

s = new slide();
s.src =  "images/watch_03_t.jpg";
s.link = "watch_03.html";
ss.add_slide(s);

s = new slide();
s.src =  "images/watch_04_t.jpg";
s.link = "watch_04.html";
ss.add_slide(s);

s = new slide();
s.src =  "images/watch_05_t.jpg";
s.link = "watch_05.html";
ss.add_slide(s);
s = new slide();

s.src =  "images/watch_06_t.jpg";
s.link = "watch_06.html";
ss.add_slide(s);

s = new slide();
s.src =  "images/watch_07_t.jpg";
s.link = "watch_07.html";
ss.add_slide(s);

s = new slide();
s.src =  "images/watch_08_t.jpg";
s.link = "watch_08.html";
ss.add_slide(s);

// The following loop sets an attribute for all of the slides.
// This is easier than setting the attributes individually.

for (var i=0; i < ss.slides.length; i++) {

  s = ss.slides[i];
 // s.target = "ss_popup";
 // s.attr = "width=700,height=600,resizable=yes,scrollbars=yes";

}


