/* 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="\"Ger, despite my knowing [the candidate] for fifteen plus years, I learned new information from these references and you leveraged my time since it is hard for me to stay in one place.\"";
}

if (quotes==1) {

title="";
subtitle="";
body="\"Thank you so much for all your diligent efforts to complete all the verifications in such a short amount of time and on such short notice. I truly appreciate the hard work you and your team did to assist us in getting ready for our licensure visit.\"";
}

if (quotes==2) {

title="";
subtitle="";
body="\"My experience with Lagniappe has always been a quality experience. The level of service is of the highest quality and professionalism. Your flexible approach to satisfying your clients is refreshing thus enhancing the overall experience.\"";
}

if (quotes==3) {

title="";
subtitle="";
body="\"The staff at Lagniappe is friendly, available, and quick to respond to all of our background needs. They provide thorough analysis and on time reports for our recruiting team. I would recommend them to anyone looking for a high-touch vendor.\"";
}

if (quotes==4) {

title="";
subtitle="";
body="\"I am writing to thank Geri Hand & her staff at Lagniappe Resources for amazing service. Geri has been a constant resource of experience and knowledge. Not only does she provide in-depth reference checking but she's also an amazing Human Resources professional that I've trusted through the years.\"";
}

if (quotes==5) {

title="";
subtitle="";
body="\"The company is aptly named. Geri and her team at Lagniappe have consistently delivered a little bit extra, both in terms of service and expertise. It's the reason they won our business, and the reason they will keep our business for a long time!\"";
}



document.write('<div class="testimonial">');
document.write('<p><em>'+ body +'</em></p>');
// document.write('<h2>' + title + '<br />');
// document.write (''+ subtitle +'</h2>');
document.write('</div>');


