/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var theLink = "news/etttest.html";
var num_of_quotes = 6;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="Press Quote";
body="Next time, be prepared with the Emergency Tire Tote kit, which can make the dirt and drudgery of wheel removal a bit easier.<br>- Mail Tribune, Southern Oregon's News";
}

if (quotes==1) {
title="Press Quote";
body="Faster than roadside assistance, the users of the Emergency Tire Tote are surprised by how easy and clean changing a flat tire can be.<br>- Limousine Digest";
}

if (quotes==2) {
title="Press Quote";
body="Kurgo's Emergency Tire Tote makes changing a flat in Monday's suit easier than expected. Stay clean and save time with this kit.<br>- Road & Travel Magazine";
}

if (quotes==3) {
title="Press Quote";
body="The Emergency Tire Tote will keep both motorists and the trunk clean while changing a flat.<br>- insync Magazine";
}

if (quotes==4) {
title="Press Quote";
body="The Emergency Tire Tote includes a pair of yellow polyethylene gloves, a kneeling mat, tire changing instructions and even a towelette, just in case you somehow get tire dirt or brake dust on your hands and arms.<br>- The Detroit News";
}

if (quotes==5) {
title="Customr Quote";
body="Hey! Just wanted to say what a GREAT product this is--that's why I'm ordering more: as gifts!<br>- Richard S., Post Falls, ID";
}

document.write('<div style="font-family: \'trebuchet MS\', Verdana, Arial, Helvetica, sans-serif; text-align: left;">');
document.write('<span style="font-size: 10px; font-weight: bold; border-bottom: 1px solid gray;">' + title + '</span><br>');
document.write('<span style="font-size: 10px; font-style: italic;">'+ body +'</span><br><br>');
document.write('<span style="font-size: 10px;"><a href="../'+theLink+'">See what others are saying!</a></span>');
document.write('</div>');