<!--
var current = 0
var x = 0
var speed = 90
var speed2 = 2000
function initArray(n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
 }
}
typ = new initArray(12)
typ[0]=" •••   ******   Repuestos Originales · Repuestos Motomel      ******  "
typ[1]=" •••   ***   Accesorios para Motos · Cascos para Motos     *** "
typ[2]=" •••    ******   Repuestos Beta · Motos Beta     ****** "
typ[3]=" •••   ******** Cubiertas para Motos · Neumaticos para Motos ********"
typ[4]=" •••     ** Venta de Baterias · Venta de Gomas **  "
typ[5]=" •••   ******  Repuestos Motomel · Motos Motomel  ******    "
typ[6]=" •••        ****  Accesorios para Scooters · Repuestos para Scooters     ****  "
typ[7]=" •••    ***** Cuatriciclos Beta · Cuatriciclos Motomel ***** "
typ[8]=" •••    **** Cadena de Distribucion · Repuestos de Distribucion ****  "
typ[9]=" •••   ***   Repuestos Motomel · Repuestos Beta   ***      "
typ[10]=" •••    *****   Reparacion de Motocicletas · Reparacion de Motomel   *****"
typ[11]=" •••      **  Cascos para Motos · Bateria para Motos ** "
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()
