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

if (quotes==0) {
title="Customer Quote";
body="I live on the second floor of a two family home. I try with every effort to carry all of the bags at once so I don't need to make the trip several times. This looks great. It would be so convenient to carry everything with this hook. I really like the idea of my fruit and yogurt containers no longer rolling all over the place.<br>- Scott H., Ware MA";
}

if (quotes==1) {
title="Customer Quote";
body="Why didn't I think of that!!! I would like to purchase two Sack Hooks.<br>- Skip C ., Elliot City, MD";
}

if (quotes==2) {
title="Customer Quote";
body="Great product! Super fast shipping! Would definitely purchase from again.<br>- Amazon 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>');
