<!--
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]="    ******   Animacion de Bodas # Animacion de Casamiento      ******  "
typ[1]="    *** Cantantes para Eventos # Cantantes para Fiestas *** "
typ[2]="     ******   Show para Casamiento # Show para Cumpleaρos     ****** "
typ[3]="    ******** Espectaculos para 15 Aρos ********"
typ[4]="      ** Grupos Musicales # Bandas Musicales **  "
typ[5]="    ****** Catering para Casamiento # Catering para Bodas ******    "
typ[6]="         ****  Mago para Casamiento # Mago para Fiestas     ****  "
typ[7]="     ***** Humoristas para 15 Aρos # Humoristas para Bodas ***** "
typ[8]="     * Espectaculos para Cumpleaρos # Espectaculos para Casamiento * "
typ[9]="    ***   Show de Ilusionismo # Show de Magia   ***      "
typ[10]="     ***** Animacion de Fiestas # Animacion de Eventos  *****"
typ[11]="       **  Ambientadores de Casamiento # Ambientadores de Bodas ** "
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()