// Reference/source: http://javascript.about.com/library/blscroll3.htm

function addScrollers() {
// code each scroller as follows:
// startScroll('id of scroller div','content of scroller');
startScroll('myscroller','Our physician clients are very pleased with the results produced by CBA. We just completed an in-house analysis on one of our large physician groups in Colorado. The president of the group has determined that it has been a very wise decision to let CBA handle their bad debt.<br>&nbsp;<br>Having managed billing services for the past 30 years, I can say from experience that CBA has been the best agency we\'ve ever used.<br>&nbsp;<br><b>Kaylene S. Black, Manager<br>Management Services Network, LLC</b><br><hr><br>I would like to express my appreciation for the services performed for Donalsonville Hospital by Credit Bureau Associates of Southwest Georgia. We have used them for over 20 years. I would highly recommend them as an outside collection agency for your medical facility.<br>&nbsp;<br><b>James Moody<br>CFO<br>Donalsonville Hospital</b><br><hr><br>I recommend Collection Bureau Associates to anyone needing assistance with debt collections.  We have worked with them for over 25 years. They are very professional as well as knowledgeable of the collection laws.  They are very flexible to work with and are always willing to accommodate any changes we request.  We consider them to be an extension of our own collection staff not just an outside agency.  We have tried working with other firms in the past 25 years, but the other firms just don\’t compare to Collection Bureau Associates\’ professionalism and recovery rate.  Therefore, I recommend them to anyone in need of assistance with collection of accounts,<br>&nbsp;<br><b>Billy Walker<br>CEO<br>Memorial Hospital and Manor</b><br><hr><br>I wanted to take a moment to tell you that Collection Bureau Associates is a pleasure to work with. In these difficult times, your staff has significantly helped us in recovering monies that we assumed were lost.<br>&nbsp;<br>Your professionalism and customer service is a mirror image of what we are all about in our organization. With that said, I look forward to a continued lasting relationship that will produce a better bottom line for both of us.<br>&nbsp;<br><b>Sincerely,<br>Greg W<br>President<br>Sharber Oil Company</b><br><hr><br>Collection Bureau Associates has been the key to collecting our bad debt. From the beginning they were given accounts that were older than five years. Within thirty day\’s Stone’s started to receive funds for those accounts that most business would have considered a complete loss.<br>&nbsp;<br><b>Chason Newberry<br>Account Manager<br>Stone\'s, Inc.<br>&nbsp;<br>CBA is a tool that our business can\'t live without!</b><br><hr><br>');
}

var speed=10; // scroll speed (bigger = faster)
var dR=false; // reverse direction

// Vertical Scroller Javascript
// copyright 24th September 2005, by Stephen Chapman
// permission to use this Javascript on your web page is granted
// provided that all of the code below (as well as these
// comments) is used without any alteration
var step = 2; function objWidth(obj) {if(obj.offsetWidth) return obj.offsetWidth; if (obj.clip) return obj.clip.width; return 0;} function objHeight(obj) {if(obj.offsetHeight) return obj.offsetHeight; if (obj.clip) return obj.clip.height; return 0;} function scrF(i,sH,eH){var x=parseInt(i.top)+(dR? step: -step); if(dR && x>sH)x=-eH;else if(x<2-eH)x=sH;i.top = x+'px';} function startScroll(sN,txt){var scr=document.getElementById(sN); var sW = objWidth(scr)-6; var sH = objHeight(scr); scr.innerHTML = '<div id="'+sN+'in" style="position:absolute; left:3px; width:'+sW+';">'+txt+'<\/div>'; var sTxt=document.getElementById(sN+'in'); var eH=objHeight(sTxt); sTxt.style.top=(dR? -eH : sH)+'px'; sTxt.style.clip='rect(0,'+sW+'px,'+eH+'px,0)'; setInterval(function() {scrF(sTxt.style,sH,eH);},1000/speed);}
window.onload = addScrollers;

