  message     = "Witamy na naszej stronie^" +
                "oferujemy wdrozenia audyty szkolenia^" +
                "HACCP | ISO 22000 | ISO 9001 | pasze GMP+ | GHP BHP^" +
                "audity HACCP i ISO^" +
				"Dokumentacje, Pakiet Sklep, Instrucje, Procedury^" +
                "^"
  scrollSpeed = 30
  lineDelay   = 1900


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

  // Unhide -->
scrollText(0)