<!--
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]="    ******   C O N S T R U C C I O N E S      ******       "
typ[1]="          Remodelacion de Casas - Remodelacion de PH   "
typ[2]="   ***   Trabajos de Albaρileria - Reparaciones de Albaρileria   *** "
typ[3]="    ********   Remodelacion de Baρos y Cocinas      ********"
typ[4]="      ********    C O N S T R U C C I O N E S      ********  "
typ[5]="    ******    Reforma de Casas Antiguas - Reforma de PH Antiguos      ******       "
typ[6]="         ******  Construccion de Hormigon - Techos de Hormigon     ******    "
typ[7]="      ********    Empresa de Pintores - Empresa de Construccion      ******** "
typ[8]="     *** Techos de Losa - Armado de Losas - Llenado de Losas ***  "
typ[9]="    ****** Colocacion de Pisos Ceramicos - Colocacion Pisos de Porcelanato ******      "
typ[10]="     **** Frentes de Casas - Frentes de Empresas - Frentes de Locales ****"
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()