<!--
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]=" •••   ********   Flores para Templos - Flores para Iglesias    ********  "
typ[1]=" •••  **    Ambientacion de Fiestas - Ambientacion de Eventos    **"
typ[2]=" •••    ******    Decoracion con Flores - Decoracion de Bodas    ******  "
typ[3]=" •••   **   Delivery Ramo de Rosas - Delivery de Flores   **"
typ[4]=" •••    ****   Flores por Mayor - Flores para Empresas   ****"
typ[5]=" •••   *** Organizacion de Bodas - Organizacion Fiestas de 15 años *** "
typ[6]=" •••   ***     Ramos de Novia - Flores para Novia     *** "
typ[7]=" •••   ***  Ambientacion de Empresas - Ambientacion de Hoteles   ***  "
typ[8]=" •••   ***  Coronas para Velorios - Coronas para Funerales  *** "
typ[9]=" •••   *****     Envio Ramo de Flores - Envio Ramo de Rosas ***** "
typ[10]=" •••   ****      Ambientadores de Bodas  - Ambientadores de Fiestas      ****"
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()
