<!--
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]=" •••   ****  Depresion Postparto - Problema de Depresion  **** "
typ[1]=" •••         Tratamiento de la Angustia - Tratamiento de la Ansiedad   "
typ[2]=" •••    ******   Problemas para Dormir - Problema de Stress     ****** "
typ[3]=" •••   ********   Maltrato de Pareja - Maltrato de Hijos      ********"
typ[4]=" •••     ****    Conflictos Familiares - Conflictos de Pareja      ****  "
typ[5]=" •••   *** Problema de Ansiedad - Problema de Soledad   ***   "
typ[6]=" •••        *** Tratamiento del Estres - Tratamiento del Insomnio ***    "
typ[7]=" •••     ***** Problemas Matrimoniales - Crisis Matrimoniales   ***** "
typ[8]=" •••    **** Angustia por Separacion - Angustia por Divorcio ****  "
typ[9]=" •••   ***   Solucion a Crisis - Solucion a Problemas   ***      "
typ[10]=" •••  ***   Ayuda a Soledad - Ayuda a Depresion ***"
typ[11]=" •••  ** Problemas Laborales - Stress Laboral ** "
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()
