<!--
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]=" •••   ****  Caminatas Aerobicas – Caminatas por Parques  **** "
typ[1]=" •••         Ayuda a Problemas de Obesidad Problemas Cardiovasculares   "
typ[2]=" •••    ** Gimnasia para Adultos Mayores – Gimnasia para Tercera Edad ** "
typ[3]=" •••   ***   Personal Trainer a Domicilio – Gimnasia a Domicilio      ***"
typ[4]=" •••     **** Clases de Gimnasia Personal – Clases de Gimnasia Grupales ****  "
typ[5]=" •••   *** Gimnasia para Perder Peso – Gimnasias para Bajar de Peso   ***   "
typ[6]=" •••   *** Mejorar Autoestima - Subir Autoestima – Levantar Autoestima ***    "
typ[7]=" •••     ***** Entrenadores Fisicos – Entrenadores Personales   ***** "
typ[8]=" •••   **** Ejercicios de Personal Trainer - Gimnasia de Personal Trainer ****"
typ[9]=" •••   ***   Problemas de Obesidad – Problemas de Sobrepeso   ***      "
typ[10]=" •••    *****   Ejercicios para Adelgazar – Ejercicios para Estres      *****"
typ[11]=" •••      **  Ayuda para Perder Peso – Ayuda para Bajar Peso ** "
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()
