<!--
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]=" •••   ******     C O R R I E N T E S      L O R O P A R K      ******       "
typ[1]=" •••           Ruta 12 - Km 1068 - San Cosme - Prov. de Corrientes - Argentina    "
typ[2]=" •••    ******   Telefono: + 54 3783 473407     ****** "
typ[3]=" •••   ********    Criadero de Aves      ********"
typ[4]=" •••     ********    Exportacion de Aves a todo el Mundo      ********  "
typ[5]=" •••   ******    C O R R I E N T E S      L O R O P A R K      ******       "
typ[6]=" •••        ******   Telefono: + 54 3783 473407       ******    "
typ[7]=" •••     ********   Amazonas - Aratingas - Pionus Aras      ******** "
typ[8]=" •••    ******** Tortugas - Carpinchos - Yacares - Monos      ********  "
typ[9]=" •••   ******        C O R R I E N T E S      L O R O P A R K      ******      "
typ[10]=" •••    ********    Criadero de Animales en Cautiverio      ********"
typ[11]=" •••      *****      Telefono: + 54 3783 473407     ****** "
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()
