var messages = new Array(); messages[0] = "Now on air: Centre Circle - Music from the films and shows"; messages[1] = "Serving the Royal Hallamshire · Northern General · Weston Park · Jessop"; messages[2] = "Call the studio FREE on *800!"; messages[3] = "Tune in on Channel 1 at your bedside"; var n=4; var i=0; var timer; var col=180; function startticker() { setcolor(); document.getElementById('ticker').innerHTML=messages[i]; fadein(); } function setcolor() { document.getElementById('ticker').style.color="rgb("+col+","+col+","+col+")"; } function fadein() { col-=2; setcolor(); if (col==0) timer=setTimeout("fadeout()",4000); else timer=setTimeout("fadein()",1); } function fadeout() { col+=2; setcolor(); if (col==180) { i++; if (i==n) i=0; document.getElementById('ticker').innerHTML=messages[i]; timer=setTimeout("fadein()",500); } else timer=setTimeout("fadeout()",1); } function stopticker() { clearTimeout(timer) }