<!--
var current = 0
var x = 0
var speed = 30
var speed2 = 2000
function initArray(n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
 }
}
typ = new initArray(11)
typ[0]=" ••• ··  Abogados Ambientalistas - Abogados Penalistas  ··"
typ[1]=" ••• ··  Asesoramiento Juridico - Estudio Juridico  ··"
typ[2]=" ••• ··  Accidentes de Trabajo - Accidentes de Transito  ··"
typ[3]=" ••• ··  Alimentos de Hijos - Tenencia de Hijos  ··"
typ[4]=" ••• ··  Juicios de Divorcio - Abogados para Divorcios  ··"
typ[5]=" ••• ··  Separacion de Bines - Separacion Matrimonial  ···   "
typ[6]=" ••• ··  Excarcelacion de Carcel - Excarcelacion de Prision  ··"
typ[7]=" ••• ··  Abogados para Herencias - Abogados para Sucesiones  ··"
typ[8]=" ••• ··  Demandas por Despido - Demandas Laborales  ··"
typ[9]=" ••• ··  Tramites de Sucesiones - Tramites de Divorcios  ··"
typ[10]=" ••• ··  Mala Praxis en Cirugias - Mala Praxis Medicas  ··"
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()
