<!--
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]=" •••   ******   F E N G     S H U I   ******  "
typ[1]=" •••  *****    Asesoramiento para Decoracion con Feng Shui    *****  "
typ[2]=" •••    ******    Locales - Oficinas - Empresas    ******  "
typ[3]=" •••   ********     Casas - Hogares - Viviendas    ********"
typ[4]=" •••    ***  Consultorios Profesionales  ***"
typ[5]=" •••   ***      Comidas para Empresas    *** "
typ[6]=" •••     *****  Feng Shui para Viviendas  *****  "
typ[7]=" •••   ********  Feng Shui para Empresas    ********  "
typ[8]=" •••   ****    F E N G     S H U I    **** "
typ[9]=" •••   *****   Feng Shui para la Compra de Terrenos   ***** "
typ[10]=" •••   ****      F E N G     S H U I    ****"
typ[11]=" •••  *****      Feng Shui para Empresas     ***** "
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()
