  <!-- Hide from old browsers

  messagem    = "Seja Bem Vindo à CONCEIÇÃO DA BARRA ES ...^" +
                "Venha desfrutar de nossas praias de àguas mornas ...^" +
                "Dançar forro em ITAUNAS Capital Nacional do Forró  ...^" +
                "Desfrutar das belezas de nosso município ...^" +
                "Praias ...^" +
                "Dunas ...^" +
                "Verde ...^" +
                "4 áreas de proteção ambiental ...^" +
                "^"
  scrollSpeed = 25
  lineDelay   = 1500

  // Do not change the text below //

  txt         = ""

  function scrollText(pos) {
    if (messagem.charAt(pos) != '^') {
      txt    = txt + messagem.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == messagem.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }

  // Unhide -->
scrollText(0)

