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

if (quotes==0) {
title="Customer Quote";
body="Nice item to have in auto.<br>- Amazon customer";
}

if (quotes==1) {
title="Customer Quote";
body="It is a great table for children.<br>- Amazon customer";
}

if (quotes==2) {
title="Customer Quote";
body="The tray is great and received it promptly - am very pleased.<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>');
