message     = "Üdvözöljük az Esztergomi tűzoltóság honlapján!^" +
		"A tökéletes megjelenítéshez minimum 1024x768-as felbontás és True Color színmélység ajánlott!^" +
		"E-mail címünk: info@esztergomhot.hu ^"
  scrollSpeed = 25
  lineDelay   = 4000

  txt         = ""

  function scrollText(pos) {
    if (message.charAt(pos) != '^') {
      txt    = txt + message.charAt(pos)
      status = txt
      pause  = scrollSpeed
    }
    else {
      pause = lineDelay
      txt   = ""
      if (pos == message.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pause)
  }

scrollText(0)