var current = 0
var q = 0
var speed = 50
var speed2 = 3000

function initArray(n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
  }
}

typ = new initArray(9)
typ[0]="• Bienvenido al Sitio Oficial de los Terciarios Capuchinos (amigonianos)"
typ[1]="• http://www.amigonianos.org "
typ[2]="• ...noticias mensuales, álbum de fotos, actividades y publicaciones,... "
typ[3]="• ...Si tienes alguna noticia o tienes algún tipo de información que crees que debes... "
typ[4]="• ...compartir con el resto de la comunidad amigoniana...no dudes en mandarla para que se publique en esta WEB"
typ[5]=""
typ[6]="• Responsable: curia Provincial: tccuria@amigonianos.org"

function typewrite() {
var m = typ[current]

window.status = m.substring(0, q++) + "•"

if (q == m.length + 1) {
q = 0
current++

if (current > typ.length - 1) {
current = 0
}

setTimeout("typewrite()", speed2)
}

else {
setTimeout("typewrite()", speed)
}
}

typewrite()

