<!--
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]=" •••   ****  Crisis de Pareja - Conflictos de Pareja  **** "
typ[1]=" •••         Maltratos Familiares - Problemas Familiares   "
typ[2]=" •••    ******   Problemas de Panico - Ataques de Panico     ****** "
typ[3]=" •••   ********   Solucion al Stress - Problemas de Stress      ********"
typ[4]=" •••     ****    Angustia por Divorcio - Depresion por Divorcio      ****  "
typ[5]=" •••   *** Problemas Matrimoniales - Problemas de Angustia   ***   "
typ[6]=" •••        *** Solucion a Soledad - Ayuda a Soledad ***    "
typ[7]=" •••     ***** Problemas de Stress - Cansancio por Stress   ***** "
typ[8]=" •••    **** Ayuda a Problemas - Solucion a Problemas ****  "
typ[9]=" •••   ***   Problemas de Insomnio - Problemas para Dormir   ***      "
typ[10]=" •••  ***   Terapias Familiares - Terapia Individual ***"
typ[11]=" •••  ** Depresion Postparto - Tratamiento para Depresion ** "
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()