  <!-- Hide from old browsers

  messagem    = "Seja Bem vindo ao sítio da Prefeitura Municipal de Ressaquinha^" +
                "Para voltar ŕ pagina inicial clique sobre a Matriz^" +
                "Melhor visualizado em 1024X768^" +
                "^"
  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)

