<!--
var current = 0
var x = 0
var speed = 20
var speed2 = 2000
function initArray(n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
 }
}
typ = new initArray(12)
typ[0]=" •••   ******   C U E N T O S  **  M U R I E L      ******       "
typ[1]=" •••          Telefono: ( +54 11) 4259-6723                "
typ[2]=" •••      ******      Cuentos a Medida        ******         "
typ[3]=" •••      Cuentos Personalizados      "
typ[4]=" •••   ********    Regalos para Enamorados      ********"
typ[5]=" •••      ******     C U E N T O S  **  M U R I E L       ******         "
typ[6]=" •••           Telefono: ( +54 11) 4259-6723               "
typ[7]=" •••   ******    Un Regalo Original      ******       "
typ[8]=" •••        ******   Cuentos Personalizados       ******    "
typ[9]=" •••           ******  Cuentos a Medida      ****** "
typ[10]=" •••    ********   Un Regalo Distinto    ********  "
typ[11]=" •••           Un cuento en base a tu historia de vida y tu familia            "
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()