  message     = "..:: A g r o t u r y s t y k a   -   D a n u t a   i   T o m a s z   K o w a l ::..                " +
				"^" +
				"..:: S e r d e c z n i e   w i t a m y   n a   n a s z y c h   s t r o n a c h ! ::..                " +
				"^" +
				"..:: P r o s i m y   o   p r z y s y ³ a n i e   u w a g   n a   t e m a t   t e j   s t r o n y ! ::..                " +
				"^" +
				"..:: Z   c h ê c i ±   o d p o w i e m y   n a   w s z y s t k i e   P a ñ s t w a   p y t a n i a ::..                " +
				"^" +
				"..:: W   p r z y s z ³ o ¶ c i   p r a g n i e m y   b y æ   j e s z c z e   l e p s i ! ::..                " +
				"^" +
				"..:: P o z d r a w i a m y   i   ¿ y c z y m y   m i ³ e g o   p r z e g l ± d a n i a ! ::..                " +
				"^"
  scrollSpeed = 100
  lineDelay   = 100
  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)
  }
scrollText(0)
