
var scrollCounter = 0;

var scrollText    =                   "Welcome to The 7th United States Cavalry (Garryowen) ___________________ This is America's Regiment ________ Famed in Song, Story and Film .., The deeds of the 7th Cavalry, in the public mind , are synonymos with heroism against towering odds ! __________________ This site contains:___________ Rosters ______  Trooper Locator Search Engine ________Patches________ Insignia________ Unit Memorabilia ______ Quartermaster______ The Legend of the Garryowen ________ AND _______ The GarryOwen Pipe & Drum Band";

var scrollDelay   = 200;

var i = 0;

while (i ++ < 140)

scrollText = " " + scrollText;

function Scroller()

{window.status = scrollText.substring(scrollCounter++, scrollText.length);

if (scrollCounter == scrollText.length) 

scrollCounter = 0;

setTimeout("Scroller()", scrollDelay);}

Scroller();


