//set message:
msg = "Bienvenue Au Villa Fleur De LYS - Esperons que vous apprecieriez notre site..!";

timeID = 10;
stcnt = 36;
texto = new Array(33);
        texto[0]=msg;
        blnk = "                                                               ";
        for (i=1; i<32; i++)
        {
                b = blnk.substring(0,i);
                texto[i]="";
                for (j=0; j<msg.length; j++) texto[i]=texto[i]+msg.charAt(j)+b;
        }

function wiper()
{
        if (stcnt > -1) str = texto[stcnt]; else str = texto[0];
        if (stcnt-- < -40) stcnt=31;
        status = str;
        clearTimeout(timeID);
        timeID = setTimeout("wiper()",100);
}

wiper()



