<!--

// 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/pre-thesis_page_001.jpg";
//s.link = "images/pre-thesis_page_001.jpg";
//s.title = "Page 001";
//s.text = "Page 001";
//s.target = "";
//s.attr = "";
//s.filter = "";
//s.timeout = "";
//ss.add_slide(s);

s = new slide();
s.src =  "images/homestudioeast.jpg";
s.link = "#";
s.title = "Home Studio East";
s.text = "Home Studio East";
ss.add_slide(s);

s = new slide();
s.src =  "images/homestudionorth.jpg";
s.link = "#";
s.title = "Home Studio North";
s.text = "Home Studio North";
ss.add_slide(s);

s = new slide();
s.src =  "images/kenilworthstudioeast6.jpg";
s.link = "#";
s.title = "Home Studio North";
s.text = "Home Studio North";
ss.add_slide(s);

s = new slide();
s.src =  "images/homestudiosouth.jpg";
s.link = "#";
s.title = "Home Studio South";
s.text = "Home Studio South";
ss.add_slide(s);

s = new slide();
s.src =  "images/kenilworthstudioeast.jpg";
s.link = "#";
s.title = "Kenilworth Studio East";
s.text = "Kenilworth Studio East";
ss.add_slide(s);

s = new slide();
s.src =  "images/kenilworthstudioeast2.jpg";
s.link = "#";
s.title = "Kenilworth Studio East";
s.text = "Kenilworth Studio East";
ss.add_slide(s);

s = new slide();
s.src =  "images/kenilworthstudioeast3.jpg";
s.link = "#";
s.title = "Kenilworth Studio East";
s.text = "Kenilworth Studio East";
ss.add_slide(s);

s = new slide();
s.src =  "images/kenilworthstudioeast4.jpg";
s.link = "#";
s.title = "Kenilworth Studio East";
s.text = "Kenilworth Studio East";
ss.add_slide(s);

s = new slide();
s.src =  "images/kenilworthstudioeast5.jpg";
s.link = "#";
s.title = "Kenilworth Studio East";
s.text = "Kenilworth Studio East";
ss.add_slide(s);

s = new slide();
s.src =  "images/kenilworthstudioeast7.jpg";
s.link = "#";
s.title = "Kenilworth Studio East";
s.text = "Kenilworth Studio East";
ss.add_slide(s);

s = new slide();
s.src =  "images/kenilworthstudiointerior.jpg";
s.link = "#";
s.title = "Kenilworth Studio Interior";
s.text = "Kenilworth Studio Interior";
ss.add_slide(s);

s = new slide();
s.src =  "images/kenilworthstudiointerior2.jpg";
s.link = "#";
s.title = "Kenilworth Studio Interior";
s.text = "Kenilworth Studio Interior";
ss.add_slide(s);

s = new slide();
s.src =  "images/kenilworthstudioeast8.jpg";
s.link = "#";
s.title = "Kenilworth Studio Interior";
s.text = "Kenilworth Studio Interior";
ss.add_slide(s);

s = new slide();
s.src =  "images/kenilworthstudioeast9.jpg";
s.link = "#";
s.title = "Kenilworth Studio Interior";
s.text = "Kenilworth Studio Interior";
ss.add_slide(s);

s = new slide();
s.src =  "images/kenilworthstudioeast10.jpg";
s.link = "#";
s.title = "Kenilworth Studio Interior";
s.text = "Kenilworth Studio Interior";
ss.add_slide(s);

s = new slide();
s.src =  "images/kenilworthstudioeast11.jpg";
s.link = "#";
s.title = "Kenilworth Studio Interior";
s.text = "Kenilworth Studio Interior";
ss.add_slide(s);

s = new slide();
s.src =  "images/kenilworthstudioeast12.jpg";
s.link = "#";
s.title = "Kenilworth Studio Interior";
s.text = "Kenilworth Studio Interior";
ss.add_slide(s);

s = new slide();
s.src =  "images/kenilworthstudioeast13.jpg";
s.link = "#";
s.title = "Kenilworth Studio Interior";
s.text = "Kenilworth Studio Interior";
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";

}

//-->