var num_of_quotes = 3;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
person="Craig Glaspell, ShopTangerine.com";
body="We truly feel the success of our business is due in part to Fraser designing our ecomm site.";
}

if (quotes==1) {
person="Dave Weagle, e.13 components";
body="Fraser understands what makes our business tick and how to get our message out, he's a big part of our team and success.";
}

if (quotes==2) {
person="Greg Jagiello, ScreamStream Interactive";
body="Fraser is our secret design weapon. We've given him some really crazy deadlines, and he comes through without cutting corners on quality. Recommended without hesitation.";
}

document.write('<div id="quotebox">');
document.write(' \"' + body + '\"  <br />');
document.write('<div id="quoteattribute">' + person + '</div>');
document.write('</div>');



