<!--
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]=" •••  ***  Pijamas para Nenes - Pijamas para Nenas   ***  "
typ[1]=" •••  ***  Ropa Interior para Chicos - Ropa Interior para Nenas  ***  "
typ[2]=" •••  ***  Fabrica de Pijamas - Venta de Pijamas  ***  "
typ[3]=" •••  ***  Ropa Infantil - Ropa Indoor  ***  "
typ[4]=" •••  ***  Ropa Infantil de Moda - Ropa Infantil de Marca  ***  "
typ[5]=" •••  ***  Pijamas de Nenes - Pijamas de Nenas  ***  "
typ[6]=" •••  ***  Franquicias de Ropa Juvenil - Fabricantes de Ropa Juvenil  ***  "
typ[7]=" •••  ***  Venta de Joggins - Fabrica de Joggins  ***  "  
typ[8]=" •••  ***  Remeras para Chicos - Remeras Infantiles  ***  "
typ[9]=" •••  ***  Pijamas para Nenas - Pijamas para Nenes   ***  "
typ[10]=" •••  ***  Ropa Infantil Exclusiva - Ropa Infantil Original  ***  "
typ[11]=" •••  ***  Venta de Camisones - Venta Remeras de Moda  ***  "
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()
