  <!-- Hide

  message_info     = "AGA-colné služby^" +
		"Colná deklarácia    ^" +
		"Intrastat - SK    ^" +
		"Medzinárodná preprava...^" +
                "^"
  scrollSpeed = 150
  lineDelay   = 1400

  // prg //

  txt         = ""

  function scrollText(pos) {
    if (message_info.charAt(pos) != '^') {
      txt    = txt + message_info.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == message_info.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }

  // Unhide -->
scrollText(0)
