<!--
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]=" •••   ***   Juicios de Divorcio - Demandas de Divorcio   ***  "
typ[1]=" •••  ****    Estudio de Abogados - Estudio Juridico    ****"
typ[2]=" •••    ***    Abogados para Sucesiones - Abogados para Herencias ***  "
typ[3]=" •••   ***  Tramitacion de Jubilaciones - Tramitacion de Pensiones  ***"
typ[4]=" •••     ****  Juicios de Despido - Juicios Laborales  ****  "
typ[5]=" •••   ***   Demandas de Alimentos - Juicios por Alimentos   ***   "
typ[6]=" •••   ***      Accidentes Laborales - Accidentes de Transito     *** "
typ[7]=" •••   **** Abogados para Divorcios - Abogados para Separaciones ****  "
typ[8]=" •••   **  Demanda de Alimentos - Juicios de Separacion de Bienes  ** "
typ[9]=" •••   *****     Tenencia de Hijos - Custodia de Hijos  ***** "
typ[10]=" •••  ****  Tramitacion de Herencias - Tramitacion de Sucesiones  ****  "
typ[11]=" •••    ****  Estudio Juridico - Estudio de Abogacia  ****  "
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()