

<!--
// 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 = 1;

// 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/_slideshow/slide01.jpg";
s.link = "http://drweilbaby.com/eCommerce/shopexd.asp?id=17";
s.title = "Green Tritan Sippy Cup";
s.text = "This is the text for slide number <em>one<\/em>.";
//s.target = "";
//s.attr = "";
//s.filter = "";
//s.timeout = "";
ss.add_slide(s);

s = new slide();
s.src =  "_images/_slideshow/slide02.jpg";
s.link = "http://drweilbaby.com/eCommerce/shopexd.asp?id=33";
s.title = "Green Tritan Sippy Cup";
s.text = "This is the text for slide number <em>two<\/em>.";
ss.add_slide(s);

s = new slide();
s.src =  "_images/_slideshow/slide03.jpg";
s.link = "http://drweilbaby.com/eCommerce/shopexd.asp?id=15";
s.title = "Green Tritan Sippy Cup";
s.text = "This is the text for slide number <em>three<\/em>.";
ss.add_slide(s);

s = new slide();
s.src =  "_images/_slideshow/slide04.jpg";
s.link = "http://drweilbaby.com/eCommerce/shopexd.asp?id=33";
s.title = "Green Tritan Sippy Cup";
s.text = "This is the text for slide number <em>four<\/em>.";
ss.add_slide(s);

s = new slide();
s.src =  "_images/_slideshow/slide05.jpg";
s.link = "http://drweilbaby.com/eCommerce/shopexd.asp?id=19";
s.title = "Green Tritan Sippy Cup";
s.text = "This is the text for slide number <em>four<\/em>.";
ss.add_slide(s);

s = new slide();
s.src =  "_images/_slideshow/slide06.jpg";
s.link = "http://drweilbaby.com/eCommerce/shopexd.asp?id=33";
s.title = "Green Tritan Sippy Cup";
s.text = "This is the text for slide number <em>four<\/em>.";
ss.add_slide(s);

s = new slide();
s.src =  "_images/_slideshow/slide07.jpg";
s.link = "http://drweilbaby.com/eCommerce/shopexd.asp?id=20";
s.title = "Green Tritan Sippy Cup";
s.text = "This is the text for slide number <em>four<\/em>.";
ss.add_slide(s);

s = new slide();
s.src =  "_images/_slideshow/slide08.jpg";
s.link = "http://drweilbaby.com/eCommerce/shopexd.asp?id=31";
s.title = "Green Tritan Sippy Cup";
s.text = "This is the text for slide number <em>four<\/em>.";
ss.add_slide(s);

s = new slide();
s.src =  "_images/_slideshow/slide09.jpg";
s.link = "http://drweilbaby.com/eCommerce/shopexd.asp?id=29";
s.title = "Green Tritan Sippy Cup";
s.text = "This is the text for slide number <em>four<\/em>.";
ss.add_slide(s);

s = new slide();
s.src =  "_images/_slideshow/slide10.jpg";
s.link = "http://drweilbaby.com/eCommerce/shopexd.asp?id=30";
s.title = "Green Tritan Sippy Cup";
s.text = "This is the text for slide number <em>four<\/em>.";
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 = "_self";
  //s.attr = "width=200,height=400,resizable=yes,scrollbars=yes";

}
