
var text = 0;

  
var message=new Array();
  
  
  message[0] = "Lotus Elan delayed, not cancelled."
  message[1] = "New Lotus V8 to be fired up in July!"
  message[2] = "Lotus Renault GP and Team Lotus have their shops online."
 
 
  
  
  
    
 
 


function changeText() {
  if (message.length > 0) {
    document.change.descript.value=message[text];
    text++;
  }
  if (text == 3) {text = 0; }  // change the # 4 at the left to the maximum # of message lines you want included
    window.setTimeout("changeText()", 7000); }  // change the # on the left to adjust the speed of the
                                               // scroll. The smaller the # the faster the speed


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();
});

