// JavaScript Document

message = " W e l c o m e / B e n v e n u t o ! ! !^"+
           "w w w . u r a c i l e . a l t e r v i s t a. o r g^"+
		   "l a  s b l i n d a  e . . .^"+
           "s t a r e r e s t a ?^" +
           "D ' O H . . .^"
scrollSpeed = 50
lineDelay = 2500
txt = ""
function scrollText(pos) {
if (message.charAt(pos) != '^') {
txt = txt + message.charAt(pos)
status = txt
pauze = scrollSpeed
}
else {
pauze = lineDelay
txt = ""
if (pos == message.length-1) pos = -1
}
pos++
setTimeout("scrollText('"+pos+"')",pauze)
}
scrollText(0)

