var mytext = new Array();
mytext[mytext.length] = {text:"The team at Healthcare Provider Solutions is amazing!  Melinda, Mark and Marianne are professional, honest, responsive and true thought leaders.<br /><br /> Their expertise enabled our agency to realize significant cash flow improvements and clinically focused operational advancements.  We’d recommend them in a heartbeat.<br /><br /> <strong>Consulting Client</strong> "};
mytext[mytext.length] = {text:"HPS has been performing our Medicare billing functions for over 4 years.  It is so reassuring to have experts managing our accounts and know that it's being done &quot;by the book&quot; and ethically.   Our days in AR have never been so low.  We have been very pleased with the services we receive.<br /><br /><strong>Home Health Agency Director</strong> "};
mytext[mytext.length] = {text:"HPS maintains the kind of customer relationship that is rare in business today. While processes are handled efficiently, the personal touch is never overlooked.<br /><br /><strong>State Home Care Association Program Coordinator</strong>"};
mytext[mytext.length] = {text:"Excellent speaker, very entertaining and informative, without a doubt this was the most helpful speaker of any of the presenters I have attended.<br /><br /><strong>Advanced Billing Training Seminar Attendee</strong>"};
mytext[mytext.length] = {text:"This was amazing, the speaker was extremely knowledgeable<br /><br /><strong>Basic Billing Training Seminar Attendee</strong>"};

function getSaying() {
 var currIndex = Math.floor(Math.random() * (mytext.length));
 var output = mytext[currIndex].text;     return output;
}
