  <!-- Hide

  message_info     = "Vitajte na stránkach spoločnosti Videonics, s.r.o.^" +
        ".... data-videoprojektory ....^" +
		".... plazmové obrazovky ....^" +
		".... domáce kiná ....^" +
		".... príslušenstvo ....^" +
		".... www.videonics.sk ...^" +
		".... komplexné riešenia prezentačných miestností a domácich kín ....^" +
                "^"
  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)
