<!--
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]=" •••   ******   Fabrica de Hamburguesas - Fabrica de Milanesas   ******  "
typ[1]=" •••  *****    Alimentos Congelados - Panificados Congelados    *****  "
typ[2]=" •••    ******    Formitas de Pollo - Patitas de Pollo    ******  "
typ[3]=" •••   ********     Hamburguesas de Carne - Hamburguesas de Soja    ********"
typ[4]=" •••    ***  Filet de Pescado - Filet de Merluza  ***"
typ[5]=" •••   ***      Papas Fritas Congeladas - Hamburguesas Congeladas    *** "
typ[6]=" •••     *****  Rabas Rebozadas - Filet Rebozados  *****  "
typ[7]=" •••   ********  Media Lunas Congeladas - Facturas Congeladas    ********  "
typ[8]=" •••   ****    Hamburguesas de Pollo - Milanesas de Pollo    **** "
typ[9]=" •••   *****   Milanesas de Soja - Hamburguesas de Soja   ***** "
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()
