<!--
var current = 0
var x = 0
var speed = 30
var speed2 = 3500
function initArray(n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
 }
}
typ = new initArray(11)
typ[0]="   † † † BIENVENIDO AL SITIO WEB DE LA PARROQUIA NUESTRA SEÑORA DEL ROSARIO, AREQUITO. † † †"
typ[1]="   Horarios de Secretaria: De Lunes a Viernes de 8:00 A 12:00"
typ[2]="   Esta Pagina Fue Diseñada Por Alejandro V. Todisco."
typ[3]="   Telefono: 54-0341-156511430"
typ[4]="   E-Mail: aletodis_18@hotmail.com"
typ[5]="   Celebraciones Eucarísticas: Martes, miercoles y Sábados a las 18 hs (Otoño Invierno), 19 hs (Primavera Verano);"
typ[6]="   Domingo, 8 y 10 hs."
typ[7]="   En capilla de Fátima: Sábado 16 hs (Otoño Invierno), 17 hs (Primavera Verano)."
typ[8]="   En capilla María Auxiliadora: Sábado 17 hs (Otoño Invierno), 18 hs (Primavera Verano)."
typ[9]="   Misa por la Sanación de los Enfermos: último martes de cada mes, 20 hs."
typ[10]="   Esta Pagina Fue Diseñada Por Alejandro V. Todisco."
typ[11]="   Telefono: 54-0341-156511430, E-Mail: aletodis_18@hotmail.com"
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()