var text = 0;
var message=new Array();
message[0] ="          Welcome to Victory!"
message[1] ="              Coming Soon!!!!"
message[2] ="         Crossroads of America"
message[3] ="  Jubilee    August 1, 2, 3, 4"
function changeText() {
if (message.length > 0) {
    document.change.descript.value=message[text];
    text++;
 }
if (text == 4) {text = 0; }
  window.setTimeout("changeText()",3600); } 
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();
});
