<!--
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]=" •••   ******   M A D E R   B O X   ******       "
typ[1]=" •••    ******   Estuches y Cajas     ****** "
typ[2]=" •••    ******   Cajas Estuches para Vinos     ****** "
typ[3]=" •••   ********    Cajas de Madera - Estuches de Madera     ********"
typ[4]=" •••     ***  Estuches de Fibrofacil - Cajas de Fibrofacil  ***  "
typ[5]=" •••   ******     M A D E R   B O X      ******       "
typ[6]=" •••        ******  Estuches de Madera para Bodegas       ******    "
typ[7]=" •••     ********    Regalos Promocionales para Empresas    ******** "
typ[8]=" •••    ***    Regalos Publicitarios para Empresas    ***  "
typ[9]=" •••   ******       M A D E R   B O X     ******      "
typ[10]=" •••    ********    Cajas de Madera para Vino Tinto y Vino Blanco      ********"
typ[11]=" •••      *****      Cajas de Madera para Habanos Puros Cigarros    ****** "
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()
