<!--
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(10)
typ[0]=" •••   ***   Asesoramiento Contable : Estudio Contable   ***  "
typ[1]=" •••  *** Liquidacion de Jornales : Liquidacion de Sueldos ***"
typ[2]=" •••    **  Contador para Empresas : Contador Publico  **"
typ[3]=" •••   ***  Liquidacion de Impuestos : Liquidacion de IVA  ***"
typ[4]=" •••    ****   Asesoramiento Contable : Asesoramiento Impositivo   ****"
typ[5]=" •••   ***  Liquidacion de Ganancias : Liquidacion de Impuestos  *** "
typ[6]=" •••   ***  Inscripcion en Monotributo : Recategorizacion de Monotributo  *** "
typ[7]=" •••   ***  Estudio Contable : Liquidacion Contable   ***  "
typ[8]=" •••   ***  Inscripcion en IVA : Inscripcion en Ganancias  *** "
typ[9]=" •••   *****     Contador para Pymes : Contador para Monotributistas   ***** "
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()