<!--
var current = 0
var x = 0
var speed = 30
var speed2 = 3000
function initArray(n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
 }
}
typ = new initArray(12)
typ[0]=" ••• ººº Regalos Regionales º Regalos Originales ººº"
typ[1]=" ••• ººº Tenedores para Asado º Cuchillos para Asado ººº"
typ[2]=" ••• ººº Cuchillos de Alpaca º Facones de Alpaca ººº"
typ[3]=" ••• ººº Artesanias en Plata º Artesanias Regionales ººº"
typ[4]=" ••• ººº Regalos Novedosos º Regalos para Embajadas ººº"
typ[5]=" ••• ººº Fabrica de Facones º Fabrica de Cuchillos ººº"
typ[6]=" ••• ººº Regalos Empresarios º Regalos Promocionales ººº"
typ[7]=" ••• ººº Cuchillos de Plata º Facones de Plata ººº"
typ[8]=" ••• ººº Regalos de Cumpleaños º Regalos para Hombres ººº"
typ[9]=" ••• ººº Artesanos Argentinos º Orfebres Argentinos ººº"
typ[10]=" ••• ººº Cubiertos Regionales º Articulos Regionales ººº"
typ[11]=" ••• ººº Cuchillos de Alpaca º Cuchillos de Plata ººº"
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()