var current = 0

var x = 0

var veloc = 80

var veloc2 = 5000

function frases(n) {

this.length = n;

for (var x=1; x <= n; x++) {

this[x] = ' '

}

}

texto = new frases(7)

texto[0]="http://www.guriarteiro.com.br ..."

texto[1]="Criação de Sites, Registro de Domínios, Hospedagem e Divulgação em Sites de Busca ..."

texto[2]="Desenvolvimento de Sites e Artes Gráficas ..."

texto[3]="Com Qualidade, Segurança e Preços Competitivos ..."

texto[4]="Profissionalismo + Seriedade = Clientes Satisfeitos ..."

texto[5]="GURI ARTEIRO » Design, Mídia e Web Site ..."

texto[6]="Telefone 51 9161-6155 ..."
function imprime_digito() {

var frase = texto[current]
window.status = frase.substring(0, x++) + "» Guri Arteiro «"

if (x == frase.length + 1) {
x = 0
current++

if (current > texto.length - 1) {
current = 0
}
setTimeout("imprime_digito()", veloc2)
}
else {
setTimeout("imprime_digito()", veloc)
}
}
imprime_digito()