/* 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 = 3;
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="John D., Kansas City";
//body="Best experiance I have ever had buying a car.";
//}

if (quotes==2) {
title="The Purvis Family";
body = "Your staff has been so very helpful, and Friendly too!";
}



document.write('<div align=center class=testimonialText>');
document.write('<strong>' + title + '</strong><br>');
document.write(''+ body +'');
document.write('<br><a href=testimonials.asp> Read all of our customer Testimonials </a>');
document.write('</div>');
