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

if (quotes==0) {
title="Press Quote";
body="You can trim the time you spent fiddling around in search of place to latch down the lid with the Trunk Cleat. You won't worry about the trunk flying open on the drive home.<br>- This Old House Magazine";
}

if (quotes==1) {
title="Press Quote";
body="It might be just the answer to your tie-down woes. Whether it's a Christmas tree, bike, lumber, rolls of carpet or big box, simply hook your tied-down strap on the Kurgo Trunk Cleat.<br>- Big Country Cars Magazine";
}

if (quotes==2) {
title="Press Quote";
body="If you have a car - and a load to haul - you'll appreciate Kurgo's Trunk Cleat. Perfect for carrying any item too large for your trunk, it keeps a sturdy tailgate tied down until it's time to unpack.<br>- Road & Travel Magazine - Featured Products";
}

if (quotes==3) {
title="Customer Quote";
body="I own a Camry and do a lot of home repairs. With the Trunk Cleat I’m able to go to the local home store, pick up my supplies and not have to ask someone “Can I borrow your vehicle” because something is too big or too long. That was the only drawback on the Camry and you solved that problem. Thanks!<br>- Online customer";
}

if (quotes==4) {
title="Press Quote";
body="The Trunk Cleat did a good job stabilizing trees in the back of my pickup. It is quick and easy to use.<br>- Judy Rodgers, Gardening How-To Magazine";
}

if (quotes==5) {
title="Press Quote";
body="The Trunk Cleat is easy to install and is made of durable materials. It's great when I'm traveling with bulky things in my car trunk.<br>- Angela Lynch, Gardening How-To Magzine";
}

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