<!--
var messaggio = "Welcome to ALENAPOLI TOUR: The GREEN ISLE of the Tourist in Campania ----  If you love it, you'll really love it... I LOVE NAPOLI. - You will visit places that will stay you in the heart.  - Guide to Naples and outskirtses. It contains specific sections on the museums and the remarkable zones with the purpose to furnish an articulated and complete vision of the cultural good in Campania. You use the services offered by ALENAPOLI... voting the survey, signing the guest book or requiring suggestions or indications to us for a happy vacation in Campania. Write us... ALENAPOLI.Org: your Guide in Campania. 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)
}
//-->