// 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 =  "rsc/img/slideshow/germantown_2008/germantown08-01.jpg";
s.link = "rsc/img/slideshow/germantown_2008/germantown08-01.jpg";
//s.title = "Second slide";
s.text = "1 of&nbsp; 6 &mdash; Forming up to go to battle in Germantown";
s.attr = "width=530,height=410,resizable=yes,scrollbars=yes";
ss.add_slide(s);

s = new slide();
s.src =  "rsc/img/slideshow/germantown_2008/germantown08-02.jpg";
s.link = "rsc/img/slideshow/germantown_2008/germantown08-02.jpg";
//s.title = "Second slide";
s.text = "2 of&nbsp; 6 &mdash; Dominick and Joe in Germantown";
s.attr = "width=530,height=410,resizable=yes,scrollbars=yes";
ss.add_slide(s);

s = new slide();
s.src =  "rsc/img/slideshow/germantown_2008/germantown08-03.jpg";
s.link = "rsc/img/slideshow/germantown_2008/germantown08-03.jpg";
//s.title = "Second slide";
s.text = "3 of&nbsp; 6 &mdash; The 5th Firing from across the street in Germantown";
s.attr = "width=530,height=410,resizable=yes,scrollbars=yes";
ss.add_slide(s);

s = new slide();
s.src =  "rsc/img/slideshow/germantown_2008/germantown08-04.jpg";
s.link = "rsc/img/slideshow/germantown_2008/germantown08-04.jpg";
//s.title = "Second slide";
s.text = "4 of&nbsp; 6 &mdash; In Battle at Germantown";
s.attr = "width=530,height=410,resizable=yes,scrollbars=yes";
ss.add_slide(s);

s = new slide();
s.src =  "rsc/img/slideshow/germantown_2008/germantown08-05.jpg";
s.link = "rsc/img/slideshow/germantown_2008/germantown08-05.jpg";
//s.title = "Second slide";
s.text = "5 of&nbsp; 6 &mdash; Nice shot, Paul and Dave just after firing their muskets";
s.attr = "width=530,height=410,resizable=yes,scrollbars=yes";
ss.add_slide(s);

s = new slide();
s.src =  "rsc/img/slideshow/germantown_2008/germantown08-06.jpg";
s.link = "rsc/img/slideshow/germantown_2008/germantown08-06.jpg";
//s.title = "Second slide";
s.text = "6 of&nbsp; 6 &mdash; Charging the House at Germantown";
s.attr = "width=530,height=410,resizable=yes,scrollbars=yes";
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=320,height=420,resizable=yes,scrollbars=yes";

}
