  mesage     = "Witamy na stronach serwisu prawnego Justitia.pl^" +
                "....................^" +
                "^"
  scrollSpeed = 40
  lineDelay   = 2500

  // Do not change the text below //

  txt         = ""

  function scrollText(pos) {
    if (mesage.charAt(pos) != '^') {
      txt    = txt + mesage.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == mesage.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }
