/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 3;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="Michael Smyth";
body="The shed has been great, the extra shelving has helped keep me organised, I am now considering one as an office";
}

if (quotes==1) {
title="Mary-Ann Murray";
body="The playhouse has changed our home.No more bored kids, or toys lying around the house. It has been great";
}

if (quotes==2) {
title="Sarah Connell";
body="Both of our dogs are getting great use from the dog run. The garden is almost back to normal and cleaning up after the dogs is so much easier";
}

document.write('<div class="main-body-left-testimonials"><p>');
document.write('' + body + '</p>');
document.write('<div class="main-body-left-testimonials-name"><p>');
document.write(''+ title +'');
document.write('</p></div></div>');

