/* 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) {
title="Quote 1";
body="'They were pretty quick, did a solid job and were a lot cheaper than it would have cost me to have Best Buy work on it.' -Mark Wagner";
}

if (quotes==1) {
title="Quote 2";
body="'Awesome fast Service, Great Price' <br /> -La Canada Auto";
}



document.write('<div align=left>');
document.write(''+ body +'');
document.write('</div>');
