// random quote script
var quote = new Array() 

quote[0] = "<b>'We were impressed.'</b><br>Auto Express";
quote[1] = "<b>'(they) certainly came up trumps on the cars we'd requested.'</b><br>Auto Express";
quote[2] = "<b>'Motorists should save by buying at cheap auction prices.'</b><br>What Car?";
quote[3] = "<b>'I am absolutely delighted with the car! It is exactly what I wanted, a great price and no problems/faults/concerns have developed since it came home. Not only that, but I had a great time at the auction and learnt a vast amount from you.'</b><br>Ian Mackenzie, Woking, Surrey.";
quote[4] = "<b>'As ever, experience is everything but one valuable benefit of this service is that the skills you learn are yours to use in the future.'</b><br>Used Car Buyer Magazine";

var ql = quote.length;
var nextquote = Math.round (Math.random () * (ql - 1));

function showQuote() {
	document.write(quote[nextquote]);
}