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

if (quotes==0) {
title="Customer Quote";
body="I really love this product!  I've been using the med. size one on my other dog, and I was really impressed with the usefulness in the car.  Now I will feel much better that both of my dogs will travel more safely in the car. Many thanks again.<br>- Phyllis, Shelia and Pasha S.";
}

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