<!--Distributed by http://www.hypergurl.com-->
<!--Hide from old browsers

//Change the text in the variable message
//Don't forget to break all lines with a ^
//If you do not place a ^ at the end of all the messages, the
//message will not repeat

message ="....Welcome to Blue Ridge Passage Resort!^" +
               "We sincerely hope that you enjoy your stay with us!^" +
               "Please browse our site and learn all the exciting things we have in store for you.^" +
               "Click on The Cabins link for some wonderful news we know you won't want to miss !^" +
               "Bluegrass lovers will be very excited about our upcoming Quarry under development!^" +
               "Check out Christophers Pizza......Live Bluegrass music every Friday and Saturday night!^"+
               "Please take time to sign our guestbook! ..... We would appreciate it!^"+
               "Kick off your shoes, get comfortable and stay as long as you like.........Thanks again for visiting Blue Ridge Passage Resort!"
scrollSpeed=25//lower is slower//
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)
}

//Unhide-->
scrollText(0)
