

var num_of_quotes = 2;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
body="'SBPS provides a level of customer service that ensures peace of mind'";
title="-Helen Mayle, President, Pickerington Area Chamber of Commerce";
}

if (quotes==1) {
body="'Partnering with SBPS has by far been the best financial investment decision I have ever made.  And to think, I thought I was simply selecting a payroll company.'";
title="-Wes Potts, Brice Express Care";
}


document.write('<div align=left>');
document.write('<font size="2"><strong>'+ body +'</strong></font>');
document.write('<br><i><font size="2">' + title + '</font></i>');
document.write('</div>');

