<!--
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]="    Panaderia y Confiteria EDELWEISS   "
typ[1]="    Camarones 4444 Floresta   y  Sucursales  "
typ[2]="     ‘‘‘‘Llama yaaaaaaaa!!!!  para hacer tu pedido :-)  "
typ[3]="    Telefono  4639-0484........"
typ[4]="    Si no vivis en Bs. As. visita la seccion DELIVERY  "
typ[5]="    Para realizar pedidos, no necesitas Tarjeta de Credito :-)  "
typ[6]="    Si leiste bien SIN tarjeta de credito!!!!!! "
typ[7]="    Seccion de Tortas Infantiles, IMPERDIBLE... :-)  "
typ[8]="    Servicio de Lunch con Envio a Domicilio  ‘‘‘  "
typ[9]="    Enviale bombones a tu pareja. Este es el momento ;-)    "
typ[10]="    Panaderia y Confiteria EDELWEISS   "
typ[11]="    www.suconfiteria.com.ar   "
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()