/* 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 = 2;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
author="Bryan R.";
job="Athletic Director";
body="I will continue to promote ur business...You do a great job with taking ideas and bringing them full circle...you will do great...";
}

if (quotes==1) {
author="Lynn S.";
job="Business Owner";
body="I LOVE the logo options - you really captured what I am looking for... Great job!";
}

document.write('<div align=left style="margin-top: 10px; font-family:Arial, Helvetica, sans-serif;">&quot;'+ body +'&quot;</div>');
document.write('<div align=left style="margin-top: 10px; font-family:Arial, Helvetica, sans-serif;">' + author + '<br><i>' + job + '</i></div>');
