<!--
var messaggio = "Welcome in the site ALENAPOLI.Com - You Voice of the Neapolitan Fans in the World! - The violence is last refuge of incapables - You use the services offered by ALENAPOLI, voting the survey, signing the guest book or writing your opinion to us... you will contribute to make of dominion I publish the idea of the blue fan. Return and publicize this site!!!  - "
var scorrimento = 100
var inizio = 50

var timer = null
var running = false
var posiz = 0

StartScrolling()

function StartScrolling(){
    StopTheClock()

    for (var i = 0; i < inizio; i++) messaggio = " " + messaggio

    DoTheScroll()
}

function StopTheClock(){
    if(running)
       clearTimeout(timer)
    running = false
}

function DoTheScroll(){
    if (posiz < messaggio.length)
        self.status = messaggio.substring(posiz, messaggio.length);
    else
        posiz=-1;
    ++posiz
    running = true
    timer = self.setTimeout("DoTheScroll()", scorrimento)
}
//-->