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

if (quotes==0) {
title="Customer Quote";
body="It's a great product - keeps my dog safe, but free to move around and have her head out the window.<br>- Amazon customer";
}

if (quotes==1) {
title="Customer Quote";
body="Company excellent to work with. Reccommend. Love the product.<br>- Amazon customer";
}

if (quotes==2) {
title="Press Quote";
body="In a sudden stop/accident, you, your pet and/or traveling companions could become seriously injured, which is what the Kurgo Auto Zip-Line is designed to prevent. With this system, your canine companion can sit still, sleep or move around about the rear of the seat, but, in a heavy braking situation, will be held in place in a manner similar to regular seat belts for humans. It's certainly worth the investment to protect your four-legged loved one as well as your passengers (including you).<br>- Daily Sun, Parts Dept.";
}

if (quotes==3) {
title="Press Quote";
body="Looking for a safe and easy way to buckle up your furry friend? Check out the Auto Zip-Line from Kurgo. This product is ideal for medium and large sized dogs alike. The secured line allows the dog the freedom of moving around in the backseat while providing safety in case of sudden stops. A fantastic website loaded with other great products make this a dog-owners paradise. So get your to-do list ready and hit the open road!<br>- Bowzer.biz, doggy e-zine";
}

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