  message     = "DISTRIBUIDOR MAYORISTA DE FABRICA - MARCAS^" +
                "PISOS Y AZULEJOS DESDE $ 49.90 MTO2 IVA INCL^" +
                "LAS MEJORES MARCAS DEL MERCADO^" +
                "Tels. 01 (81) 8350-67-91^" +
                "Tels. 01 (81) 8350-67-91^" +
                "Correo; alfer@yga.com.mx^"
  scrollSpeed = 45
  lineDelay   = 1500

  // Do not change the text below //

  txt         = ""

  function scrollText(pos) {
    if (message.charAt(pos) != '^') {
      txt    = txt + message.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == message.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }

  // Unhide -->
scrollText(0)