tempo = 50;
chars = 10;
texto = " Proinox - Sistemas Sanitários ";
ptexto = new Array(33);
ptexto[0] = texto;
blnk = " ";
for (i = 1; i < 32; i++) {
b = blnk.substring(0, i);
ptexto[i] = "";
for (j = 0; j < texto.length; j++) ptexto[i] = ptexto[i] + texto.charAt(j) + b;
}
function animastatus() {
if (chars > -1) str = ptexto[chars]; 
else str = ptexto[0];
if (chars-- < -40) chars = 31;
status = str;
clearTimeout(tempo);
tempo = setTimeout("animastatus()", 60);
}
animastatus()