<!--
var current = 0
var x = 0
var speed = 20
var speed2 = 2000
function initArray(n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
 }
}
typ = new initArray(12)
typ[0]="    ********   Esculturas ArtVillalba   ********  "
typ[1]="               Estatuas Regionais           "
typ[2]="     ******    Escultores de Madeira    ******  "
typ[3]="    ********    Presentes e Empresas    ********"
typ[4]="     ***  Ambientadores de Eventos  ***"
typ[5]="    ***       Presentes Promocionais     *** "
typ[6]="      ********  Decoradores de Eventos  ********  "
typ[7]="    ********  Esculturas ArtVillalba  ********  "
typ[8]="    ****    Decoraηγo de Locais    **** "
typ[9]="    *****     Presentes Regionais     ***** "
typ[10]="    ****      Ambientaηγo de Bares    ****"
typ[11]="   *****      Monumentos     ***** "
function typewrite() {
var m = typ[current]
window.status = m.substring(0, x++) + ""
if (x == m.length + 1) {
x = 0
current++
if (current > typ.length - 1) {
current = 0
}
setTimeout("typewrite()", speed2)
}
else {
setTimeout("typewrite()", speed)
}
}
typewrite()