<!-- // scrolling text

var scrollCounter = 0;
var scrollText    = " Chimera Ranch Alpacas ~~ Integrating Predictable Pedigree Award Winning Dams with Selective Breeding Machos; Results in Excellence in Fleece and Conformation as a Lifestyle ~~ Investigate the Herd Enriching value of Partnering with Chimera Ranch. ";
var scrollDelay   = 80;
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();
// End of scroller script -->

