<!--
var current = 0
var x = 0
var speed = 90
var speed2 = 2000
function initArray(n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
 }
}
typ = new initArray(12)
typ[0]="    ******   Reformas de Locales - Reformas de Casas      ******       "
typ[1]="          Construccion de Obras Nuevas - Construccion de Casas   "
typ[2]="     ******   Pintura de Altura - Trabajos de Altura     ****** "
typ[3]="    ********   Remodelacion de Baρos - Remodelacion de Cocinas      ********"
typ[4]="      ****    Pintura de Edificios - Pintura de Consorcios      ****  "
typ[5]="    ****** Arquitectos para Hoteles - Arquitectos para Bares   ******       "
typ[6]="         ******  Reformas de Hoteles - Reformas de Restaurants     ******    "
typ[7]="      ***** Impermeabilizacion de Terrazas Techos y Medianeras   ***** "
typ[8]="     **** Remodelacion de Casas Antiguas - Remodelacion de Oficinas ****  "
typ[9]="    ***   Construccion de Locales - Construccion de PH Duplex   ***      "
typ[10]="     *****   Albaρileria para Casas - Reformas de Albaρileria      *****"
typ[11]="       **  Remodelacion de Edificios - Remodelacion de Empresas ** "
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()