/* JavaScript Scrolling Marquee */
/* Last Update: 25 December 2002 */

message = "Welcome!  You are now in Dyar Straights!^" +
          "Browse Allyson's & Dafydd's Web Pages...^" +
          "And the many different Internet sites...^" +
          "To which they connect and are connected.^" +
          "Thanks for your time!  Enjoy your visit!^" +
          "^"
scrollSpeed = 30
lineDelay   = 1500
// Do not change the text below //
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)
