    message     = "Welcome to Ranksborough Limited^" +
                "Developers of exclusive Residential and Holiday Parks since 1975^" +
                "Ranksborough Hall in keeping with the locality, offers the best in home parks^" +
                "set in beautiful countryside with historic buildings^" +
                "Call us on 01572 722984, or email: info@ranksboroughhall.com for more information^" +
                "^"
  scrollSpeed = 35
  lineDelay   = 2000

  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)