<!--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 ="The Dan River Queen.  Now destined to become a floating stage at our outdoor amphitheater!"
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)
