<!--
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(10)
typ[0]=" •••  ***  Colocacion de Split - Reparacion de Split   ***"
typ[1]=" •••  ***  Mantenimiento de Equipos Centrales Acondicionados  ***"
typ[2]=" •••  ***  Instalacion de Acondicionados - Colocacion de Acondicionados  ***"
typ[3]=" •••  ***  Service de Aires - Reparacion de Aires  ***"
typ[4]=" •••  ***  Instalacion de Aires - Instalacion de Split  ***"
typ[5]=" •••  ***  Mantenimiento de Aires Centrales - Mantenimiento de Split Centrales  ***"
typ[6]=" •••  ***  Servicio Tecnico de Acondicionados - Reparacion de Acondicionados  ***"
typ[7]=" •••  ***  Instalador de Split - Service de Split  ***  "
typ[8]=" •••  ***  Reparacion de Aires - Instalacion de Aires  ***"
typ[9]=" •••  ***  Reparacion de Surrey - Reparacion de Carrier  ***"
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()