<!--
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]="    ******** Tu Sitio Ya.com.ar ********  "
typ[1]="    Diseρo de Paginas Web  "
typ[2]="     ****** Animaciones para su Empresa ****** :-)  "
typ[3]="    ******** Su Nombre.com.ar desde $100 ********"
typ[4]="    ‘‘‘‘‘ Sin Gastos mensuales de Mantenimiento !!!!  "
typ[5]="    *** Diseρo de Logos y Logotipos para Empresas en 2D y 3D *** :-)  "
typ[6]="    Decidase ya a tener su empresa en Internet !!!!!! "
typ[7]="    ΏΏΏΏ Cuanto mas podria vender teniendo su Catalogo en Internet ????  "
typ[8]="    **** Animaciones para su Empresa **** "
typ[9]="    ***** Imaginese la Cantidad de Ventas al Interior y Latinoamerica ****** ;-)    "
typ[10]="    Diseρo de Logos y Logotipos para Empresas en 2D y 3D   "
typ[11]="    ‘‘‘‘‘ Si es unos de los 1Ί en su Rubro, va a tener ventajas sobre sus Competidores !!!!"
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()
