  message     = "Willkommen auf unserer Homepage !!^" +
                "Ihr Stahlbau-Profi für Stahlbau aus Vorarlberg ... ^" +
                "ein Jungunternehmen mit langjähriger Erfahrung im Stahlbau ...^" +
                "Stahlbau - Fassaden - Schlosserei ...^" +
                "Motivation schafft Verantwortungsgefühl - schafft Qualität !^" +
                "^"
  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)