<!--
/* 
var scrollCounter = 0; 
var scrollText = '  Чем больше блокировок на джипе, тем дальше бежать за трактором!  ';
var scrollDelay = 70; 
var i = 0; 
while (i ++ < 140) 
scrollText = " " + scrollText; 
function Scroller() { 
  window.status = scrollText.substring(scrollCounter++, scrollText.length); 
  if (scrollCounter == scrollText.length) 
  scrollCounter = 0; 
  setTimeout("Scroller()", scrollDelay);
}
Scroller(); 
*/
<!-- 


function initArray() {
this.length = initArray.arguments.length;
   for (var i = 0; i < this.length; i++) {
   this[i] = initArray.arguments[i];
   }
}

var text  = new initArray(
"",
"",
"",
"");

var speed = 50;
var speed2 = 1500;
var whereat = 0;
var whichone = 0;

function waveb() {
  var befor = text[whichone].substring(0,whereat);
  var wave = 
text[whichone].substring(whereat,whereat+1).toUpperCase();

  window.status = befor + wave;

  if (whereat == text[whichone].length) {
   whereat = 0;
   ++whichone;
   if (whichone == text.length) whichone = 0;
   setTimeout("waveb()",speed2);
  }

  else {
   whereat++;
   setTimeout("waveb()",speed);
  }
}

waveb();


//-->