<!--

// 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 =  "img/distillery_pics/distillery_pic_1.jpg";
s.title = "Exterior Shot";
s.text = "The exterior of The Distillery seen from E 2nd St.";
//s.target = "";
//s.attr = "";
//s.filter = "";
//s.timeout = "";
ss.add_slide(s);

s = new slide();
s.src =  "img/distillery_pics/distillery_pic_2.jpg";
s.title = "Main Entrance";
s.text = "The main entrance to The Distillery studios and galleries.";
ss.add_slide(s);

s = new slide();
s.src =  "img/distillery_pics/distillery_pic_3.jpg";
s.title = "Exterior Shot";
s.text = "The Distillery as viewed from rear parking lot.";
ss.add_slide(s);

s = new slide();
s.src =  "img/distillery_pics/distillery_pic_4.jpg";
s.title = "Community Garden";
s.text = "The Distillery community garden.";
ss.add_slide(s);

s = new slide();
s.src =  "img/distillery_pics/distillery_pic_5.jpg";
s.title = "Proof Gallery";
s.text = "The hallway outside of Proof Gallery, second floor.";
ss.add_slide(s);

s = new slide();
s.src =  "img/distillery_pics/distillery_pic_6.jpg";
s.title = "Hallway";
s.text = "Hallway on second floor.";
ss.add_slide(s);

s = new slide();
s.src =  "img/distillery_pics/distillery_pic_7.jpg";
s.title = "Stairway";
s.text = "Stairway with sculpture by a Distillery tenant displayed.";
ss.add_slide(s);

s = new slide();
s.src =  "img/distillery_pics/distillery_pic_8.jpg";
s.title = "Hallway";
s.text = "Hallway with artwork by a Distillery tenant displayed.";
ss.add_slide(s);

s = new slide();
s.src =  "img/distillery_pics/distillery_pic_9.jpg";
s.title = "Hallway ";
s.text = "Hallway with artwork by a Distillery tenant displayed.";
ss.add_slide(s);

s = new slide();
s.src =  "img/distillery_pics/distillery_pic_10.jpg";
s.title = "Hallway";
s.text = "Hallway with artwork by a Distillery tenant displayed.";
ss.add_slide(s);

s = new slide();
s.src =  "img/distillery_pics/distillery_pic_11.jpg";
s.title = "View of Boston";
s.text = "The view of Boston from the sixth floor windows.";
ss.add_slide(s);

s = new slide();
s.src =  "img/distillery_pics/distillery_pic_12.jpg";
s.title = "View";
s.text = "View of the main building from the sixth floor warehouse.";
ss.add_slide(s);

s = new slide();
s.src =  "img/distillery_pics/distillery_pic_13.jpg";
s.title = "Elevator Doors";
s.text = "Freight elevator doors in the warehouse hallways.";
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";

}

//-->
