<!--
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]=" •••   ******   Liberacion de Prision º Excarcelacion de Prision      ******  "
typ[1]=" •••   ***   Defensa Penal º Juicio Penal     *** "
typ[2]=" •••    ******   Eximicion de Carcel º Liberacion de Carcel     ****** "
typ[3]=" •••   ******** Juicios por Estafa º Juicios por Quiebra ********"
typ[4]=" •••     ** Estudios Penales º Abogados Penales **  "
typ[5]=" •••   ******  Juicios Penales º Demandas Penales  ******    "
typ[6]=" •••        ****  Penal Cambiario º Penal Economico º Penal Tributario     ****  "
typ[7]=" •••    ***** Estudios de Abogacia º Estudios de Abogados ***** "
typ[8]=" •••    **** Juicios Penales º Demandas Penales ****  "
typ[9]=" •••   ***   Estudios de Abogados º Estudios Juridicos   ***      "
typ[10]=" •••    *****   Juicios por Insolvencia º Juicios por Defraudaciones   *****"
typ[11]=" •••      **  Abogados Penalistas º Estudios Penalistas ** "
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()