msg = "Ci sono i soci Sfiga, i fratelli Palla, Bob Cava, Money to Burn, il Niforme, il Re, Cazzetti e tanti altri… tu in chi ti riconosci? ";

pos = 0;
function ScrollMessage() {
   var newtext = msg.substring(pos, msg.length) + msg.substring(0, pos);
   var div = document.getElementById("scroll");
   div.firstChild.nodeValue = newtext;
   pos++;
   if (pos > msg.length) pos = 0;
   window.setTimeout("ScrollMessage()",200);
}