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

if (quotes==0) {
title="David is a true professional!";
body="- Scott Wehba, Infinite Solutions";
}

if (quotes==1) {
title="He consistently delivers to our deadlines, provides superior quality and is a pleasure to work with.";
body="- Ryan Lloyd, CEU.com";
}

if (quotes==2) {
title="For on target reads, professional attitude and the added bonus of a good humour, David is my #1 choice!";
body="- Kim Murray, TSN/RDS";
}

if (quotes==3) {
title="Now that we've found David we plan to make him a part of our regular team!";
body="- Mylene Legresley, YOW Canada";
}

if (quotes==4) {
title="David always delivers on time and with excellent quality.";
body="- Kirk Berry, Masterytech";
}

if (quotes==5) {
title="Thanks for the fast turnaround time!";
body="- Pamela Foreman, Outbound Train";
}

if (quotes==6) {
title="David did an excellent job!";
body="- Tom O'Neill, ISCO Industries";
}

if (quotes==7) {
title="David really brought our voiceovers to life!";
body="- Mike Fisher, Simutech Multimedia";
}

if (quotes==8) {
title="The level of individual attention David showed us was amazing. He is our go-to guy from now on!";
body="- Mike Fisher, Simutech Multimedia";
}

document.write('<div align=center>');
document.write(' <font   color="#F8A809" size="+1"><strong><i> "' + title + '"</i></strong></font><br><br>');
document.write('<font size="-3" face="Verdana, Arial, Helvetica, sans-serif"    >  '+ body +'</font>');
document.write('</div>');