<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'images/examples/001.jpg'
theImages[1] = 'images/examples/002.jpg'
theImages[2] = 'images/examples/003.jpg'
theImages[3] = 'images/examples/004.jpg'
theImages[4] = 'images/examples/005.jpg'
theImages[5] = 'images/examples/006.jpg'
theImages[6] = 'images/examples/007.jpg'
theImages[7] = 'images/examples/008.jpg'
theImages[8] = 'images/examples/009.jpg'

// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}

//  End -->

//  Start -->
<!--

//    Script Editor:   Howard Chen

//    Browser Compatible for the script: IE 2.0 or Higher

//                                       Netscape 2.0 or Higher

//    This script is free as long as you keep its credits

var ShowString = "                                          " //The first line must be blank

               + "Destination Wilderness... " //You can keep adding words in this pattern (+ "Words")

               + "Outdoor Adventures: White water Rafting, Kayaking, Hiking, Wildlife Tours and More..."

               + "Family Fun and Scenic Wilderness"

//-------------------------------------------------------------

var ShowWidth  = 100

var ShowHead   = 0

var ShowTail   = ShowWidth

var ShowLength = ShowString.length

//-------------------------------------------------------------

function Marquee ()

   {

   var DisplayString

   if (ShowHead < ShowTail)

     DisplayString = ShowString.substring(ShowHead, ShowTail)

   else

     DisplayString = ShowString.substring(ShowHead, ShowLength)

                   + ShowString.substring(       0, ShowTail)

//----------------------------------------------------------

   ShowHead = (ShowHead + 1 ) % ShowLength

   ShowTail = (ShowTail + 1 ) % ShowLength

   //----------------------------------------------------------

   window.status = DisplayString

   //----------------------------------------------------------

   TimerID = setTimeout("Marquee()", 100) //Change the number to change the speed (the fewer, the faster)

   }

//====================================================

//-->

