var ScrollString = 'EPL Title Chase: Red Devils\' defence leaky? Just score more, says our analyst | Now, S\'pore thugs post videos of themselves kicking man\'s head like football. | Should young thugs be counselled or jailed? | '
var timer = 0;
function scrolltext() {
document.box.boxtext.value = ScrollString
ScrollString=ScrollString.substring(1,ScrollString.length) + ScrollString.charAt(0);
timer = setTimeout('scrolltext()',150) ;
}

