function get_images() {

   var slideimages = new Array();

   // EDIT IMAGES BELOW

   // To added images just follow the pattern below.
   // Insert a new line reading: slideimages[(next number)] = "<img src='(image url)'>";
   // Replace the (next number) with the next value.
   // Replace the (image url) with the path to the image.  Fully urls are advised.
   // If you want to make the image a link then wrap the image tag in an <a href="(url)"></a> tag and replace the (url)
   //    with the path to the page being linked to
   slideimages[0]="<a href='http://www.lewisandclarkscenicbyway.com'><img src='homerturnout.jpg' border='0'></a>";
   slideimages[1]="<img src='scenic.jpg'>";
   slideimages[2]="<img src='people.jpg'>";
   slideimages[3]="<img src='eq.jpg'>";

   // EDIT IMAGES ABOVE

   return slideimages;
}

function get_data() {

   // EDIT INFORMATION BELOW

   /*configure the below four variables to change the style of the slider*/
   /*set the scrollerwidth and scrollerheight to the width/height of the LARGEST image in your slideshow!*/
   var scrollerwidth="800px";
   var scrollerheight="175px";
   var scrollerbgcolor="f5f0d9";
   /*3000 miliseconds=3 seconds*/
   var pausebetweenimages=3000;

   // EDIT INFORMATION ABOVE

   var info = new Array();
   info.push(scrollerwidth);
   info.push(scrollerheight);
   info.push(scrollerbgcolor);
   info.push(pausebetweenimages);

   return info;
}
