//store the quotations in arrays
quotes = new Array(6);
authors = new Array(6);

quotes[0] = "What we have been able to make happen this month is nothing less than a testament to your work - you have listened, you have given great counsel, you have taken action, you have found some amazing gems.&nbsp; You have given this little company a great shot to take it to the next level.&nbsp; And, it is fun to work with you.";
authors[0] = "- Head of healthcare communications agency";

quotes[1] = "Every time I called your office I felt like you and your staff knew who I was and cared that I got the information I needed in a timely manner.";
authors[1] = "- Vice President, public relations firm";

quotes[2] = "What makes Chaloner unique is that they understand communications, not just recruiting.";
authors[2] = "- General Manager, technology organization";

quotes[3] = "Chaloner offered intelligent and valued feedback throughout the interview/hiring process that I found unparalleled by any other recruiter I've worked with.";
authors[3] = "- Candidate";

quotes[4] = "Chaloner is an excellent partner for my recruiting efforts. They're plugged into the local and national communications community, which gives them an excellent network of top professionals to leverage in their searches.";
authors[4] = "- VP, Corporate Communications";

quotes[5] = "Chaloner Associates made a real effort to understand our needs. And although these needs changed dramatically in the course of our search, they never faltered and continued to provide us with outstanding candidates. We are delighted with the Vice President of Marketing they found for us. I will use Chaloner Associates without hesitation for our future needs.";
authors[5] = "- CEO, financial institution";

quotes[6] = "....you and your firm were terrific to work with and I appreciate all the work you did helping us to reach this goal. I have only the most positive things to say about your company - and the recruiter I worked with - and I will continue to refer people to you and will look forward to engaging you again should the need arise.";
authors[6] = "- CEO, online services firm";

quotes[7] = "We have used Chaloner on several assignments over the years, most recently a Director of Corporate Communications. This stuff is their sweet spot and they didn't let us down. They work tirelessly and keep with it right to the end. We could easily have hired three of those they referred to us.";
authors[7] = "- SVP and Chief Administrative Officer, global technology and health sciences company";

quotes[8] = "Thank you all for your help throughout this search. I was really pleased with the speed and efficiency of the process - and elated at the result!";
authors[8] = "- Hiring manager, national utilities company";

quotes[9] = "Thanks for everything you did to help make this connection. You made my first experience working with a search firm a very positive and memorable one!";
authors[9] = "- Placed candidate";

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

//display the quotation
document.write("<DL>\n");
document.write("<DT>" + "\"" + quotes[index] + "\"\n");
document.write("</DL>\n");
document.write("<DL>\n");
document.write("<DT class='quotee'>" + authors[index] + "\n");
document.write("</DL>\n");

//done