// RANDOM TEXT
function random_text()
{};
var random_text = new random_text();
var number = 0;

random_text[number++] = "<blockquote><p><span>&ldquo;</span>It had been a dream of mine for many years to learn to fly and after searching for a school near Gloucester I chose to learn at Staverton Flying School. The instructors took a very individual view of each student and carefully tailored the lessons to suit the person’s ability, rather than just pushing you through the syllabus. There is a real feeling of being part of a club and there is always someone to give sound advice and help even after you have achieved your PPL.&rdquo;</p></blockquote><em>Ian Hollingsworth</em>"
random_text[number++] = "<blockquote><p><span>&ldquo;</span>A friendly flying club where everyone has a true passion of flying, and a wealth of experience they are willing to share. In an area surrounded by so many interesting places to fly to, what more could you wish for.&rdquo;</p></blockquote><em>Duncan Stephenson</em>"
random_text[number++] = "<blockquote><p><span>&ldquo;</span>Staverton Flying School has a welcoming friendly atmosphere - no need to be nervous - all the help and encouragement to get off the ground and realise that lifetimes ambition.&rdquo;</p></blockquote><em>Millie Joines</em>"

var random_number = Math.floor(Math.random() * number);

document.write(random_text[random_number]);
