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

if (quotes==0) {
title="Press Quote";
body="Kurgo products' ingenious Haul-n-Stow bag makes the grunt work a little easier. The product fits the most user-unfriendly bags of topsoil, plant food, mulch or stones. Nine ergonomically positioned handles make it easy to carry, lift and pour even the most cumbersome contents. It unzips along the full length of the bag on two sides to offer easy access to the contents.<br>- HomeStyle.com";
}

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

