// JavaScript Document
<!-- Hide from old browsers  
  message     = "Witamy na stronie www.mataro.pl^" +
                "Z nami stac Cię na sukces !!!^" +
                "Profesjonalna kadra.^" +
                "Zadzwon: tel. (022) 425-54-63^" +
                "Gwarantujemy profesjonalne szkolenia^" +
                "Zadzwon: tel. (022) 425-54-63^" +
                "Zobacz nasze referencje^" +
                "Zadzwon: tel. (022) 425-54-63^" +
                "Zapraszamy do współpracy.^" +
                "^"
  scrollSpeed = 40
  lineDelay   = 4500
  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 -->
if (document.all) scrollText(0)
-->