//store the quotations in arrays
quotes = new Array(5);
authors = new Array(5);
quotes[0] = "Why I not only like using but why I LOVE using DataCheck......requests are submitted on line... very convenient!  Progress Reports...if I want to know the status of a request I just go on line and can get an update...customer service is fantastic!!!  Results are sent to me online...easy for me!";
authors[0] = "Marci Arnold, Corporate Recruiter<br>Hilmar Cheese Company";
quotes[1] = "We are very pleased with the thorough information and prompt response of your company. This latest report is very telling and gives us insights we would never have had any other way.";
authors[1] = "Floyd Fitzgibbons, CIC<br>President<br>Fitzgibbons & Associates";
quotes[2] = "DataCheck is an amazing resource for our company. Their website is user-friendly, the request return time is fantastic, and company/client communication and follow-through cements their reputation as a superior customer service-oriented company.";
authors[2] = "Marsha Evans<br>Terra Search Group";
quotes[3] = "We are very pleased with the service provided by DataCheck, it's always prompt and reliable.";
authors[3] = "Viviana Jenkins<br>Human Resources Specialist<br>Biolase Technology, Inc.";
quotes[4] = "As a rapidly growing internet company, we use DataCheck's services for each of the new employees we bring to our team. Our experience has been consistently positive with regards to service and turn around time. They are quick and easy to work with, and I would recommend them to anyone seeking this type of service.";
authors[4] = "PriceGrabber";

//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write("<div><img src=images/qbar.gif width=240 height=10></div>\n");
document.write("<div class=quote>" + "\"" + quotes[index] + "\"</div>\n");
document.write("<div class=quotee>" + "" + authors[index] + "\n");
document.write("</div><br>\n");

//done