<!-- Original:  Tarjei Davidsen (the@rescueteam.com) -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var max=0;
function textlist() {
max=textlist.arguments.length;
for (i=0; i<max; i++)
this[i]=textlist.arguments[i];
}
tl = new textlist(
"If you have a boat that you wish to donate to Atlantic Challenge, give us a call. We need good used sail or power boats for instruction or to help maintain our two longboats and the Lester F. Hall.  Income tax receipts are issued for the full market value of your boat."
);

var x = 0; pos = 0;
var l = tl[0].length;
function textticker() {
document.tickform.tickfield.value = tl[x].substring(0, pos) + "_";
if(pos++ == l) {
pos = 0; 
setTimeout("textticker()", 7000); 
if(++x == max) x = 0; 
l = tl[x].length;
} else
setTimeout("textticker()", 58);
}


//  End -->

