var theQuote = new Array()

theQuote[0] = '<span class="text_white">"A very useful course which will benefit me immediately."</span><br><span class="text_blue_lite"><i>B Snowball, Wyvern Waste</i></span>'
theQuote[1] = '<span class="text_white">"An excellent two days. Learnt a lot from it."</span><br><span class="text_blue_lite"><i>South Wales Fire Service</i></span>'
theQuote[2] = '<span class="text_white">"The Rhodes Training & Development Consultant was an excellent listener, showed a good understanding of what we are trying to achieve and provided an objective view that was invaluable."</span><br><span class="text_blue_lite"><i>S Aikman, Catalist</i></span>'
theQuote[3] = '<span class="text_white">"I enjoyed the course. It covered all of my concerns and made me more aware of my communication skills."</span><br><span class="text_blue_lite"><i>L Smith, Merchant Investors</i></span>'
theQuote[4] = '<span class="text_white">"Very Good. I usually lose interest half way through training courses, however this one was the exception. I have learnt a lot and I feel positive about putting things into action. The trainer was great."</span><br><span class="text_blue_lite"><i>C Vaughan, GOSW</i></span>'
theQuote[5] = '<span class="text_white">"The course helped me identify the key principles including my legal responsibilities."</span><br><span class="text_blue_lite"><i>G Troy, Celebration Travel</i></span>'

var k = 0
var l = theQuote.length;
var preQuote = new Array()
for (m = 0; m < l; m++){
   preQuote[m] = new Image()
   preQuote[m].src = theQuote[m]
}
var whichQuote = Math.round(Math.random()*(l-1));
function showQuote(){
document.write(''+theQuote[whichQuote]+'');
}