così:
codice:
<script type='text/javascript'>
<!--
var msg, spd, c;
var size = 140;
function animateStatusLine (message, speed) {
msg = message;
spd = speed ? speed : 20;
c = 0;
moveText();
}
function moveText () {
if (c <= msg.length)
window.status = msg.substring(msg.length - c)
else if (c < size + msg.length)
window.status = ' ' + window.status;
else
c = 0;
c++;
setTimeout('moveText()', spd);
}
//-->
</script>
<BODY ONLOAD="animateStatusLine('¤º°`°º¤ø,¸¸,ø¤º°`°º¤ø,¸ Antagonia Rock Band Italiana - Vai Cooorratooo ¤º°`°º¤ø,¸¸,ø¤º°`°º¤ø,¸¸,', 50);">