<!--
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]=" •••   ******   Recuperar Pareja º Retorno de Pareja      ******  "
typ[1]=" •••   ***   Magia Blanca º Magia Negra     *** "
typ[2]=" •••    ******   Amarres de Pareja º Union de Pareja     ****** "
typ[3]=" •••   ******** Problemas Amorosos º Problemas Afectivos ********"
typ[4]=" •••     ** Trabajos de Magia Blanca º Brujerias de Magia Blanca **  "
typ[5]=" •••   ****** Daños por Brujerias º Daños por Trabajos   ******    "
typ[6]=" •••        ****  Crisis de Pareja º Conflictos de Pareja     ****  "
typ[7]=" •••    ***** Problemas Matrimoniales º Crisis Matrimoniales ***** "
typ[8]=" •••    **** Conseguir Trabajo º Problemas de Trabajo ****  "
typ[9]=" •••   ***   Problemas Pasionales º Problemas Afectivos   ***      "
typ[10]=" •••    *****   Hechizos de Amor º Conjuros de Amor      *****"
typ[11]=" •••      **  Brujerias para Parejas - Brujerias para Amor ** "
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()
