//<!--
var Quotation = new Array()
Quotation[0] = "\"We are more than just a temporary service. Whether your need is temporary or permanent, we are your resource for personnel\"";
Quotation[1] = "\"Many businesses have turned to the contingent work force as a valuable tool to achieve greater flexibility, productivity, and competitiveness\"";
Quotation[2] = "\"A recent report by the U.S. Department of Labor noted that: 'Employers that have flexibility in adjusting labor requirements to meet product and service demands have a competitive edge over those with less flexible resource policies'\"";
Quotation[3] = "\"We at TPR Personnel understand that flexibility is important. That is why we maintain a large staff of qualified, dependable, and dedicated employees\"";
Quotation[4] = "\"We can thoroughly screen and do background checks as well as drug test on each employee at your request\"";
Quotation[5] = "\"We do the job right the first time!\"";
Quotation[6] = "\"Our experienced staff is ready to work with you to provide just the right people for your needs. Whether you are looking for short-term, long-term or permanent placement, you can depend on us for all your personnel needs\"";
Quotation[7] = "\"We guarantee it... 100%! Full Satisfaction. No Adjustments. No Questions. No charge!\"";
Quotation[8] = "\"In order to maintain a high-quality staff, we offer health benefits. We believe this helps to attract stable, dependable, and dedicated employees\"";
Quotation[9] = "\"Don't let special projects tie you up, we will work with you on cost effective solutions to your special needs\"";
var Q = Quotation.length;
var whichQuotation = Math.round(Math.random() * (Q - 1));
function showQuotation() {
document.write(Quotation[whichQuotation]); }
//-->
