/* 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="Charles O'Neal";
subtitle="Helena Chemical Company";
body="Paul made very strong points.  They are things that you can refer back to and concentrate on them and they will make everything in my business better.";
}

if (quotes==1) {
title="Dr. David Wright";
subtitle="Wright Balance Inc.";
body="I have attended many continuing education seminars and summits in my career.  I consider my experience at Pinehurst to be right at the top.  Your constant smile was a wonderful, infectious addition.  The dedication and enthusiasm you brought to the retreat was impressive and much appreciated.";
}

if (quotes==2) {
title="Catrin Nilsmark";
subtitle="European Solheim Cup Team Captain";
body="Thanks for a great training camp.";
}

if (quotes==3) {
title="Fred Griffin, Director";
subtitle="Grand Cypress Academy of Golf";
body="I came away with renewed enthusiasm and many new ideas that will make me more effective in my job.";
}

if (quotes==4) {
title="Ivan Lendl";
subtitle="Tennis Champion";
body="Paul, I did have a great time at Pinehurst and also learned a lot.";
}

if (quotes==5) {
title="Pat Swanson";
subtitle="Medlink Georgia, Inc.";
body="Clear communicator, very concise and organized!";
}

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

