<!-- Begin
var howMany = 9
var quote = new Array(howMany+1)
quote[0]="'8 to 10 hours, lots of work, lots of fun, lots of people using horse sense to discover their potential'"
quote[1]="'Like many others who walked through Diamonds front door, it's become a second home'"
quote[2]="'I enjoy working with the horses and the kids - I always feel welcome'"
quote[3]="'Diamond is hopes and dreams, Diamond is special'"
quote[4]="'I get a buzz helping with the children and in many cases I see an improvement in them by the time they leave'"
quote[5]="'I get so much satisfaction from seeing the children enjoy themselves and seeing them glad to see their helpers. We become friends and miss them when they leave'"
quote[6]="'It is a rewarding and enjoyable way to help others'"
quote[7]="'Volunteering gives structure and focus to my week. It is timeout from our everyday life when we choose to do something for ourselves'"
quote[8]="'Friendships, putting ones own life into perspective, by helping others'"
quote[9]="'When I see how much pleasure the riders get from riding and interacting with the horses it makes it very worthwhile'"
function rndnumber(){
var randscript = -1
while (randscript < 0 || randscript > howMany || isNaN(randscript)){
randscript = parseInt(Math.random()*(howMany+1))
}
return randscript
}
quo = rndnumber()
quox = quote[quo]
document.write(quox)
// End -->