<!--
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]=" •••   **** Muebles a Medida de Cocina . Muebles a Medida de Baño ****  "
typ[1]=" •••   *** Oferta de Pisos Flotantes . Precios de Pisos Flotantes *** "
typ[2]=" •••    ****   Frentes de Placards . Interiores de Placards     **** "
typ[3]=" •••   ****** Muebles de Cocina y Placards para Constructoras ******"
typ[4]=" •••     ** Mesadas de Granito . Mesadas de Marmol **  "
typ[5]=" •••   *** Fabrica Muebles de Cocina . Venta Muebles de Cocina ***    "
typ[6]=" •••        ****  PISOS FLOTANTES     ****  "
typ[7]=" •••    ***** Alacenas de Cocina . Bajo Mesadas de Cocina ***** "
typ[8]=" •••    * Vestidores a Medida . Placards a Medida * "
typ[9]=" •••   ***   MUEBLES DE COCINA   ***      "
typ[10]=" •••  Muebles de Cocina por Mayor . Amoblamientos de Cocina por Mayor  "
typ[11]=" •••      **  Griferia FV para Baño . Griferia FV para Cocina **      "
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()
