var scrollText  = "Under-paid, overworked or just plain bored? Then try chanting:  Hey, hey, ho, ho, greedy CEOs have got to go. Hey, hey, ho, ho, corporate greed has got to go!";
var scrollDelay   = 265;
var scrollCounter = 0;
var j=0;
var p=false;
var counter=0;

function DoScrolle(x){
y=x;
for (var i=0; i<105; i++)
    scrollText = " " + scrollText; // prep by appending whole mess of blanks to scroller.

 for (counter=scrollDelay; counter <= scrollDelay*x; counter += scrollDelay){
	 j=setTimeout("Scroller(" + x + ")", scrollDelay+counter+1000);
	 if (counter == scrollDelay * x || p==true){
	    clearTimeout(j);
		 setTimeout("window.status=''",scrollDelay+counter+1001);
		 break;
	 }
 }
return true;
}

function Scroller(x){
     window.status = scrollText.substring(scrollCounter++,scrollText.length);
}
function StopS(){
p=true;
return('');
}

DoScrolle(265);
