<!--
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]="    ******    D M * E V E N T O S      ******       "
typ[1]="            Shows para Eventos y Fiestas               "
typ[2]="     ******  Barras de Tragos para Casamientos 15 aρos       ****** "
typ[3]="    ***** Animacion de Fiestas de Cumpleaρos de 15 aρos  *****"
typ[4]="      ****    D M * E V E N T O S      ****  "
typ[5]="    ******   Barras Moviles - Barras de Bebidas Libres    ******       "
typ[6]="         ******    Bebidas para Fiestas - Bebidas para Eventos      ******    "
typ[7]="            *****    Organizacion Integral de Fiestas de Empresas      *****     "
typ[8]="     ********   D M * E V E N T O S    ********  "
typ[9]="    ** Fiestas de Casamiento - Cumpleaρos de 15 aρos - Fiestas Empresariales ** "
typ[10]="       Shows de Salsa - Show de Odaliscas - Shows de MAgia y mas......            "
typ[11]="       *****     Barras Moviles de Bebidas - Barras Libres de Bebidas      ****** "
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()
