Hang Gliding Association with both National and Local Forums
https://ushawks.org:443/forum/
<script language="javascript">
c1 = new config();
c1.prefix = "y_textTail1";
c1.updateDelay = 30;
c1.letterspacing = 14;
c1.message = "DJ XL (210) 223-7582";
c1.message = c1.message.split("");
c1.howmany = parseInt(c1.message.length);
c1.oldx = new Array();
c1.oldy = new Array();
c1.uid = 1;
for (i=0;i<c1.howmany;i++) {
c1.oldx[i] = 0;
c1.oldy[i] = -50;
}
for (i=0;i<c1.howmany;i++) {
writeLayer("<span class=\"textTail\">" + c1.message[i] + "</span>", c1.prefix + i, 0, -50);
setVisible(c1.prefix + i, 1);
}
function updatetextTail(c) {
c.widthBoundry = getViewWidth() - 30;
for (i=c.howmany-1;i>0;i--) {
c.oldx[i] = c.oldx[i-1] + c.letterspacing;
c.oldy[i] = c.oldy[i-1];
}
c.oldx[0] = cursorX + c.letterspacing;
c.oldy[0] = cursorY;
for (i=0;i<c.howmany;i++) {
if (c.oldx[i] >= c.widthBoundry) {
c.oldx[i] = c.widthBoundry;
setVisible(c.prefix + i, 0);
} else { setVisible(c.prefix + i, 1); }
moveLayer(c.prefix + i, c.oldx[i], c.oldy[i]);
}
setTimeout("updatetextTail(c" + c.uid + ")", c.updateDelay);
}
if (c1.message != "") {
captureXY();
updatetextTail(c1);
}
</script>