  message     = "GIOIA ist unser Chorname und steht für das Wort  F r e u d e ...^" +
                "ANIMATO ... APPASSIONATO ... ESPRESSIVO ...^" +
                "Animato ... beseelt, beschwingt ...^" +
                "Apassionato ... leidenschaftlich ...^" +
                "Espressivo ... ausdrucksvoll ...^" +
				"Singen schafft lebensbejahende und postitive Stimmung ...^" +
				"Gioia - ein Chor mit viel Lebensfreude !^" +
                "^"
  scrollSpeed = 70
  lineDelay   = 1500

  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)