<!--
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]=" •••   ****  Decoracion con Globos - Decoracion con Telas  **** "
typ[1]=" •••         Ambientadores de Eventos - Ambientadores de Fiestas   "
typ[2]=" •••    ******   Regalos para Nacimientos - Regalos Originales     ****** "
typ[3]=" •••   ***   Plantas para Inauguraciones - Flores para Inauguraciones   ***"
typ[4]=" •••     ****    Decoracion con Flores - Ambientacion con Flores      ****  "
typ[5]=" •••   *** Arreglos Florales - Centros de Mesa Florales   ***   "
typ[6]=" •••        *** Catering para Casamientos - Catering para 15 Años    ***    "
typ[7]=" •••     ***** Envio de Ramos de Flores - Envio de Ramos de Rosas   ***** "
typ[8]=" •••    **** Decoracion de Salones - Decoracion de Iglesias ****  "
typ[9]=" •••   ***   Tocados de Novia - Ramos de Novia   ***      "
typ[10]=" •••    *****   Decoracion de Fiestas - Decoracion de Eventos      *****"
typ[11]=" •••      **  Tortas de Casamiento - Tortas de 15 Años ** "
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()