// JavaScript Document

  message     = ">>>> Bienvenidos al Partido Político Justicia Nacional <<<<^" +
                "Aquí podrás hallar información sobre la posición política y muchas otras cosas^" +
                "Renovemos la Política.^"

  scrollSpeed = 50
  lineDelay   = 2000

  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)
  }

scrollText(0)

