// JavaScript Document
var theCitation = new Array() 
theCitation[0] = 'Anna Friedler'
theCitation[1] = 'Anna Tindall'
theCitation[2] = 'Beth Dawes'
theCitation[3] = 'Daniel Kirkbride'
theCitation[4] = 'Hazel Simpson'
theCitation[5] = 'Kathie Loyd'


var theQuote = new Array() 
theQuote[0] = "I'm speechless! I'm going to study Biology at Oxford University. I have enjoyed my time at Farnham College and I am particularly grateful for the support."
theQuote[1] = "I am very happy! I can't believe it. I'm going to Cardiff University to study French and Spanish. Farnham College is amazing, really nice people, a great experience."
theQuote[2] = "It feels so good - best result ever! After a gap year volunteering in Swaziland, I am going to Durham University to study Maths. Farnham College is amazing."
theQuote[3] = "It feels absolutely amazing! I'm so pleased and looking forward  to next year! I've had a great time at Farnham College it's been a memorable two years!"
theQuote[4] = "I am thrilled with my results, they're more than what I wanted and perfect for my course. The best part of life at Farnham College was the friendly atmosphere."
theQuote[5] = "I'm very pleased with my results! I'm going to Cardiff to study Geology. I would recommend Farnham College for its nice teachers and lovely people."

var j = 0
var p = theCitation.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theCitation[i]
}
var whichImage = Math.round(Math.random()*(p-1));


document.write(theQuote[whichImage]);



