<!--

// Create the slideshow object
ss = new slideshow("ss");

// Set the delay between slides, 1000 = 1 sec
 ss.timeout = 5000;

// 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/logoom.gif";
s.link = "http://www.outdoormind.net";
s.text = "<P CLASS='10PTBLK' ALIGN='CENTER'><FONT SIZE='-1' FACE='Arial, Helvetica'><A HREF='http://outdoormind.net'><B>OutdoorMind</B></A><BR><B>Internet and Web Site Services and More</B><BR><B>Design, Hosting, SEO, Consulting</B></FONT></P>";

//s.target = "";
//s.attr = "";
//s.filter = "";
//s.timeout = "";
ss.add_slide(s);


s = new slide();
s.src =  "images/bicycletour.jpg";
s.link = "http://www.bicycletour.com";
s.text = "<P CLASS='10PTBLK' ALIGN='CENTER'><FONT SIZE='-1' FACE='Arial, Helvetica'><A HREF='http://bicycletour.com'><B>Worldwide Bicycle Tour Directory</B></A><BR><B>A Searchable Directory of<BR>Bicycle Rides, Tours and Events</B></FONT></P>";
ss.add_slide(s);


s = new slide();
s.src =  "images/advnetlogo.jpg";
s.link = "http://www.adventurenetwork.com";
s.text = "<p style=\"font:Arial, Helvetica, sans-serif;font-size:12px;font-weight:700\"><a href=\"http://www.adventurenetwork.com\" target=\"_blank\">AdventureNetwork.com</a><br />The Ultimate Online Resource<br />For Outdoor, Adventure & Fitness Enthusiasts</font></p>";
ss.add_slide(s);


//-->

