  message     = "Alpine Hotel Valluga, Zürs am Arlberg, Austria, Vorarlberg Österreich^" +
                "Welcome to our homepage ...^" +
                "... make youreself feel at home!^" +
                "We give you time to relax ... ^" +
                "... in a cheerful atmosphere !^" +
                "You got questions - we are here to help you ...^" +
                "^"
  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)
