<!--
 
// Create the slideshow object
ss = new slideshow("ss");
ss.timeout = 1000;
// 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;
 
/*


// SLIDESHOW FRAME SAMPLE BLOCK - REPEAT FOREACH IMAGE
////////////////////////////////////////////////////////////
s = new slide();
s.src =  "IMAGE_LOCATION.jpg";
s.link = "LINK_LOCATION";
s.title = "IMAGE_ALT_TEXT";
//s.text = "TEXT TO DISPLAY FOR SLIDE - TEXT LAYER.";
//s.target = "_self";
//s.attr = "";
//s.filter = "";
//s.timeout = "";
ss.add_slide(s);
////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////*/
 
 
// Create the slides and add them to the slideshow.

s = new slide();
s.src =  "index/ss_feat_4.jpg";
s.link = "http://www.oranawildlifepark.co.nz/cheetah.htm";
s.title = "Exciting Encounters - Cheetah Chase Encounter at Orana Wildlife Park";
s.target = "_self";
ss.add_slide(s);

s = new slide();
s.src =  "index/ss_feat_1.jpg";
s.link = "http://www.oranawildlifepark.co.nz/conservation.htm";
s.title = "Conservation Research at Orana Wildlife Park";
s.target = "_self";
ss.add_slide(s);

s = new slide();
s.src =  "index/ss_feat_2.jpg";
s.link = "http://www.oranawildlifepark.co.nz/encounters.htm";
s.title = "Exciting Encounters - Lion Encounter at Orana Wildlife Park";
s.target = "_self";
ss.add_slide(s);

s = new slide();
s.src =  "index/ss_feat_3.jpg";
s.link = "http://www.oranawildlifepark.co.nz/nz.htm";
s.title = "New Zealand Wildlife at Orana Wildlife Park";
s.target = "_self";
ss.add_slide(s);

s = new slide();
s.src =  "index/ss_feat_5.jpg";
s.link = "http://www.oranawildlifepark.co.nz/rhino.htm";
s.title = "Exciting Encounters - Face to Face Rhino Encounter at Orana Wildlife Park";
s.target = "_self";
ss.add_slide(s);

s = new slide();
s.src =  "index/ss_feat_6.jpg";
s.link = "http://www.oranawildlifepark.co.nz/encounters.htm";
s.title = "Exciting Encounters - Sumatran Tiger Encounter at Orana Wildlife Park";
s.target = "_self";
ss.add_slide(s);

s = new slide();
s.src =  "index/ss_feat_7.jpg";
s.link = "http://www.oranawildlifepark.co.nz/giraffe.htm";
s.title = "Exciting Encounters - Hand Feed the Giraffes at Orana Wildlife Park";
s.target = "_self";
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";
 
}
 
//-->

