msg = "LISTEN TO THE BEST NEW MUSIC ON LONDONS 104.9 XFM ";
pos = 0;
function ScrollMessage() {
   var newtext = msg.substring(pos, msg.length) + msg.substring(0, pos);
   var h3 = document.getElementById("scroll");
   h3.firstChild.nodeValue = newtext;
   pos++;
   if (pos > msg.length) pos = 0;
   window.setTimeout("ScrollMessage()",220);
}