// JavaScript Document

message = " w w w . p u l i d o r i . a l t e r v i s t a. o r g^"+
           "L a n c i o t t o  P u l i d o r i^"+
		   "a r t i s t a  c o n t e m p o r a n e o^"+
           "s c u l t o r e  e  p i t t o r e^" +
           "^"
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)

