<!--

// 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/csmfaq/photo_faq_1a.jpg";
s.link = "";
s.title = "First slide";
s.text = "Tenement tours visit different restored apartments. No tour encompasses the entire building.  Rather, each tour focuses on a particular floor and theme.";
ss.add_slide(s);

s = new slide();
s.src =  "images/csmfaq/photo_faq_1.jpg";
s.link = "";
s.title = "First slide";
s.text = "An Irish Family In America visits the 1869 home of the Moores, an immigrant family struggling to stay healthy.";
ss.add_slide(s);

s = new slide();
s.src =  "images/csmfaq/photo_faq_2.jpg";
s.link = "";
s.title = "Second slide";
s.text = "A look at immigrants and work, Piecing It Together includes a visit to the 1897 home of the Levines, Russian immigrants who ran a garment shop in their parlor.";
ss.add_slide(s);


s = new slide();
s.src =  "images/csmfaq/photo_faq_3.jpg";
s.link = "";
s.title = "Third slide";
s.text = "Getting By visits two apartments set during economic depressions, including the 1935 home of the Baldizzi family.";
ss.add_slide(s);


s = new slide();
s.src =  "images/csmfaq/photo_faq_4.jpg";
s.link = "";
s.title = "Fourth slide";
s.text = "Perfect for families, The Confino Family tour visits the 1916 home of Victoria Confino, a young Sephardic immigrant played by a costumed interpreter.";
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";

}

//-->