/* 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) {
body="<i>&quot;The Type-25&rsquo;s engine is one of the most thoroughly developed independent projects we&rsquo;ve encountered.&quot;</i><p>-Evo Magazine 09/2006</p>";
};

if (quotes==1) {
body="<i>&quot;We&rsquo;re used to rabidly quick rally missiles here at Evo, but Litchfield&rsquo;s latest creation is from another planet&quot;</i><p>-Evo Magazine 09/2006</p>";
};

if (quotes==2) {
body="<i>&quot;On everyday roads this car isn&rsquo;t just fast, it&rsquo;s ridiculously fast.&quot;</i><p>-Evo Magazine 09/2006</p>";
};


document.write('<div id="quote">');
document.write(''+ body +'');
document.write('</div>');
