/* 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 = 4;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="Chaquilla";
body="I really appreciate the time you spent with me making the decision.";
}

if (quotes==1) {
title="Diana";
body="The next time I need a car, I know where I am going to buy it!!";
}

if (quotes==2) {
title="The Purvis Family";
body = "Your staff has been so very helpful, and Friendly too!";
}

if (quotes == 3) {
    title = "Paula";
    body = "Online payments is what I was waiting for. Easier, quicker to pay... Thanks!";
}



document.write('<div>');
document.write('<strong>' + title + '&#45;</strong><br>');
document.write('&quot;' + body + '&quot;');
document.write('</div>');

