/* 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/tgtest.html";
var num_of_quotes = 2;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="Press Quote";
body="We think this is a neat way to store and protect your winter, spring/summer, or even racing tires. It's the Tire Garage offered by Kurgo Products. This 'garage' allows you to keep tires outside and frees up extra space in the garage, basement or storage area.<br>- Mustang 5.0 Magazine";
}

if (quotes==1) {
title="Customer Quote";
body="I used it for my summer tires and it is great and looks great in my garage.<br>- Online customer";
}

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>');

