/* 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 = 5;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="Peggy Hardigree";
subtitle="Oconee State Bank";
body="Professionally prepared and knowledgeable speaker.  When interviewing applicants, I will consider experience, skills and perspectives more than I do now.";
}

if (quotes==1) {
title="Natalie Nix";
subtitle="First American Bank & Trust Co.";
body="Paul started the thought process for self-improvement as well as ideas to help others develop.  I will start tomorrow.  Great presentation!";
}

if (quotes==2) {
title="Peggy Hendrix";
subtitle="Pharma Tech Industries";
body="I liked the 3 questions to self-monitor skills and performance.  I will begin using these tomorrow and pass along to my co-workers.  Performance does Matter!";
}

if (quotes==3) {
title="Lisa David";
subtitle="Waverly Court Houses";
body="The presentation motivated me to action.";
}

if (quotes==4) {
title="Lisa Ward";
subtitle="Athens Clarke County Government";
body="The entire presentation was excellent.  I now know the questions to ask myself to improve both personally and professionally.";
}

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

