/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 6;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {

title="";
subtitle="";
body="\"I have used Lagniappe Resources for background checks for many years. They have always provided high quality, fast and thorough results. I have recommended their services to other companies.\"";
}

if (quotes==1) {

title="";
subtitle="";
body="\"Geri at Lagniappe Resources has been such a great asset to my business. She goes out of her way to make sure I get everything I need, and always gets me the information in a more than timely fashion.\"";
}

if (quotes==2) {

title="";
subtitle="";
body="\"Lagniappe has come through for us in such clutch situations. I would recommend Geri and Lagniappe Resources to anyone who is in need of background check services.\"";
}

if (quotes==3) {

title="";
subtitle="";
body="\"Your organization is always professional and willing to go the extra step to accommodate our needs. You always understand the urgency of our requests and handle them in a timely manner. You always treat me as if I was your only client.\"";
}

if (quotes==4) {

title="";
subtitle="";
body="\"I was so pleased with Lagniappe that when we bought our own small business we immediately asked the team to assist. The insight into backgrounds that Lagniappe provides has allowed us to have straightforward and difficult conversations before we make a critical hiring decision. Lagniappe meets the needs of the Fortune 20 Company all the way to the small \"mom and pop.\" I highly recommend Lagniappe for the success of your business.\"";
}

if (quotes==5) {

title="";
subtitle="";
body="\"Lagniappe Resources was an invaluable resource for my company. Their comprehensive reference checks helped insure quality of hire in our fast-growing, competitive business. The service Geri and her highly capable team provide is top-notch. Lagniappe took care to learn our business and recruiting process; they were a valued partner.\"";
}



document.write('<div class="testimonial">');
document.write('<p><em>'+ body +'</em></p>' + '<br />');
// document.write('<h2>' + title + '<br />');
// document.write(''+ subtitle +'</h2>');
document.write('</div>');


