<!--
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]=" •••   ****  Ayuda a Conflictos - Ayuda a Problemas  **** "
typ[1]=" •••         Problemas Matrimoniales – Maltratos Matrimoniales   "
typ[2]=" •••    **  Solucion a Problemas - Solucion a Crisis - Solucion a Conflictos  ** "
typ[3]=" •••   ***   Levantar Autoestima - Mejorar Autoestima   ***"
typ[4]=" •••     ****    Problemas Afectivos - Problemas Emocionales      ****  "
typ[5]=" •••   *** Conflictos Matrimoniales - Crisis Matrimoniales   ***   "
typ[6]=" •••        *** Problemas de Pareja – Conflictos de Pareja   ***    "
typ[7]=" •••     ***** Problemas de Estres - Problemas de Soledad   ***** "
typ[8]=" •••    **** Crisis de Pareja - Maltrato de Pareja - Problemas de Pareja ****  "
typ[9]=" •••   ***   Soledad por Divorcio - Soledad por Separacion   ***      "
typ[10]=" •••    *****   Problemas Familiares - Conflictos Familiares      *****"
typ[11]=" •••      **  Vivir Mejor - Sentirse Mejor ** "
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()
