var text = 0;

var message=new Array();
  message[0] = "Bradenton, FL – Sheriff “These trailers have all of a sudden become easy targets for thieves.”"
  message[1] = "Oklahoma – Sheriff - “Theft of livestock, horse, and flat bed trailers has increased significantly.”"
  message[2] = "Ft. Lauderdale Police Department - “The Ft. Lauderdale Police Department has issued a warning concerning the increase in trailer theft.”"
  message[3] = "San Jose, California Police Department - “Thieves are really seeing the ease and value in backing a pick-up truck and driving off with someone's trailer and going through the goods off-site.  Trailers parked in driveways have been stolen.”"

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()", 3500); }  // 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();
});