<!--
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(12)
typ[0]="    ********   Vinos para Eventos - Vinos para Fiestas   ********  "
typ[1]="   Envio Bebidas a Domicilio - Envio Alcoholicas a Domicilio  "
typ[2]="     ******    Vinoteca en el Centro - Vinoteca en Barrio Norte    ******  "
typ[3]="    ********     Vinos por Mayor - Venta de Vinos    ********"
typ[4]="     ********    Bodegas de Vinos - Cajas de Vinos     ********"
typ[5]="    ***     Vinos para Fiestas - Champagne para Fiestas     *** "
typ[6]="         Bebidas con Alcohol para Cumpleaρos      "
typ[7]="    ********  Venta de Vinos Buenos - Venta de Vinos Finos   ********  "
typ[8]="    **** Delivery de Bebidas Blancas - Delivery de Bebidas con Alcohol **** "
typ[9]="    *****     Vinos para Casamientos - Vinos para 15 Aρos  ***** "
typ[10]="    ****      Venta de Vinos - Venta de Bebidas    ****"
typ[11]="   *****      Vinos por Mayor para Restaurantes      ***** "
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()