/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Sandeep Gangadharan | http://sivamdesign.com/scripts/ */
var text = 0;

var message=new Array();
  message[0]= "Scotts tours does not try to sell you timeshares and is reputable for those must do boating, snorkeling, and Sierra Madre tours that should not be missed. S. Lansing."
  message[1]= "I love Scott. He helped us find our hotel in November, even though we were not booking a tour. Nice English speaking guy."
  message[2]= "We booked all our trips last time with Scott, as we will do again in March 2008. Yep, 6 weeks and counting. Just look for Scott's Canadian and American flags. Great Guy. Great Prices !!!"
  message[3]= "We booked two tours with Scott and he saved us a pile of money. He is very helpful and has all the time in the world for you."
  message[4]= "He's excellent. I recommend him. He is local in bucerias too so he is available should there be any problems. Other vendors are internet and not local in the PV area reducing the chance of taking care of issues. Mersol"

function changeText() {
  if (message.length > 0) {
    document.change.descript.value=message[text];
    text++;
  }
  if (text == 4) {text = 0; }  // change the # 4 at the left to the maximum # of message lines you want included
    window.setTimeout("changeText()", 5500); }  // change the # on the left to adjust the speed of the
                                               // scroll. The smaller the # the faster the speed

// Multiple onload function created by: Simon Willison
// http://simon.incutio.com/archive/2004/05/26/addLoadEvent
function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      if (oldonload) {
        oldonload();
      }
      func();
    }
  }
}

addLoadEvent(function() {
  changeText();
});
