var lgth=0;

//list news items here (use as many as you need. Use quotes around each one and end each line with a semicolon)
var a0=" - - Latest mp3s (March 3rd) now available in the archive - -";
var a1=" - - STOP PRESS:  At last, Leyton High Rd. has a proper, FREE Cash Machine! - -";
var a2=" - - Best of all, it's just a few yards away from the Coach & Horses... - -";
var a3=" - - ...outside the new branch of Tesco Express.  - - "

//Follow the format below, e.g. the next message would be a4, a5 etc.
newsitems=new items(a0,a1,a2,a3);

// ****  Do not alter below this line *****************************************
var ini=0; var st=0; var w=newsitems[0].length;
function items() {
lgth=items.arguments.length;
for (i=0; i<lgth; i++)
this[i]=items.arguments[i];}
function newsticker(){
var temp=newsitems[ini].substring(0,st)+"_";
document.newsform.textbox.value=temp;
if(st++==w) { 
//Adjust timer for delay between messages
st=0; setTimeout("newsticker()",1200); ini++;
if(ini==lgth) ini=0; w=newsitems[ini].length; 
} else
//adjust timer for "clicking speed" eg letter,letter,letter....
setTimeout("newsticker()",90);}
