<!--
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]=" •••   ******    O H !!! Ropa Joven      ******       "
typ[1]=" •••   ******        Ropa Informal Unisex     ******      "
typ[2]=" •••    ******  Telefono: ( +54 11) 4555-3135      ****** "
typ[3]=" •••   ********    Celular: 15-6120-7987       ********"
typ[4]=" •••     ******    Franquicias de Ropa Informal    ******       "
typ[5]=" •••   ******   O H !!! Ropa Joven    ******       "
typ[6]=" •••        ******     Remeras - Jeans - Cinturones      ******    "
typ[7]=" •••    ******** F R A N Q U I C I A S    ********  "
typ[8]=" •••    ******** O H !!! Ropa Joven    ********  "
typ[9]=" •••   ******         Celular: 15-6120-7987     ******      "
typ[10]=" •••  ******  Telefono: ( +54 11) 4555-3135       ****** "
typ[11]=" •••   ********    O H !!! Ropa Joven - Ropa Informal       ********"
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()