// ====================================================
// ====================================================
// ATV Slide show data
// ====================================================
// ====================================================

// Create the MAIN slideshow object
ss = new slideshow("ss");

// Set the delay between slides, 1000 = 1 sec
ss.timeout = 4000;

// 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 = true;

// Create the slides and add them to the slideshow.
s = new slide();
s.src = "image/portfolio/atvdepot.jpg";
s.link = "http://www.atvdepot.ca";
s.title = "ATV Depot";
s.text = "ATV Depot";
ss.add_slide(s);

s = new slide();
s.src = "image/portfolio/filsingers.jpg";
s.link = "http://www.filsingersorganic.com";
s.title = "Filsingers Organic Food &amp; Orchards";
s.text = "Filsingers Organic Food &amp; Orchards";
ss.add_slide(s);

s = new slide();
s.src = "image/portfolio/brendaq.jpg";
s.link = "http://www.brendaquaile.com";
s.title = "Royal LePage Rep. Brenda Quaile";
s.text = "Royal LePage Rep. Brenda Quaile";
ss.add_slide(s);

s = new slide();
s.src = "image/portfolio/kingsway.jpg";
s.link = "http://www.kingswaynurseryschools.ca";
s.title = "Kingsway Nursery Schools";
s.text = "Kingsway Nursery Schools";
ss.add_slide(s);

s = new slide();
s.src = "image/portfolio/ruc.jpg";
s.link = "http://www.rockwoodunitedchurch.ca";
s.title = "Rockwood+Stone United Churches";
s.text = "Rockwood+Stone United Churches";
ss.add_slide(s);

s = new slide();
s.src = "image/portfolio/wordbird.jpg";
s.link = "http://www.wordbirdpress.ca";
s.title = "Wordbird Press";
s.text = "Wordbird Press";
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 = "";
	s.attr = "width:350,height=284";
  //s.attr = "width=320,height=420,resizable=yes,scrollbars=yes";
	//s.target = "";
	//s.attr = "";
	//s.filter = "";
	//s.timeout = "";
}

