
// Set up the image files to be used.
var theImages = new Array()
var Thetext = new Array()
// do not change this
// To add more image files, continue with the
// pattern below, adding to the array.


theImages[0] = '/Resources/Public Documents/RACFacts/0.jpg'

theImages[1] = '/Resources/Public Documents/RACFacts/1.jpg'

theImages[2] = '/Resources/Public Documents/RACFacts/2.jpg'

theImages[3] = '/Resources/Public Documents/RACFacts/3.jpg'

theImages[4] = '/Resources/Public Documents/RACFacts/4.jpg'

theImages[5] = '/Resources/Public Documents/RACFacts/5.jpg'

theImages[6] = '/Resources/Public Documents/RACFacts/6.jpg'

theImages[7] = '/Resources/Public Documents/RACFacts/7.jpg'

theImages[8] = '/Resources/Public Documents/RACFacts/8.jpg'

theImages[9] = '/Resources/Public Documents/RACFacts/9.jpg'

theImages[10] = '/Resources/Public Documents/RACFacts/10.jpg'

theImages[11] = '/Resources/Public Documents/RACFacts/14.jpg'

theImages[12] = '/Resources/Public Documents/RACFacts/12.jpg'

theImages[13] = '/Resources/Public Documents/RACFacts/13.jpg'

theImages[14] = '/Resources/Public Documents/RACFacts/14.jpg'


Thetext[0] = 'The College is often referred to as "the Oxbridge of the Countryside". The main quadrangle sits alongside the 16th-century tithe barn and farmhouse, in 25 acres of manicured grounds.'

Thetext[1] = 'RAC graduates have gone on to enjoy success in diverse careers including politics, sport, business and, of course, senior positions within the international food and farming industries. Well-know former students include the broadcaster, Jonathan Dimbleby; former England rugby captain, John Pullin; Olympic gold medallist, Captain Mark Phillips and Viscount Bledisloe, former Governor-General of New Zealand. '

Thetext[2] = 'The College has traditions and clubs that are as old as the buildings themselves and the Student Union team are always developing fantastic new activities, societies and clubs. There are four major balls held each year, considered to be amongst the country&rsquo;s finest.'

Thetext[3] = 'The College has its own beer, Muddy Wellies, founded by students from the Royal Agricultural College Entrepreneurs Club.'

Thetext[4] = 'The College farms are based at two locations: Coates and Harnhill. They include a 2,400 ewe-breeding flock and rotational arable cropping, and also have a dairy teaching facility'

Thetext[5] = 'The new polo facility features 72 stables with grooms from countries including Argentina, Brazil and Australia.'

Thetext[6] = 'The Royal Agricultural College Alumni is a powerful network. Over 10,000 members live around the globe - from Africa to Argentina, from the United States to Australia.'

Thetext[7] = 'Agricultural colleges modelled on the Royal Agricultural College can be found in Canada, New Zealand, the USA and Japan.'

Thetext[8] = 'Just six months after leaving the College in 2008, 73% of our recent graduates were already in employment, whilst a further 23% either continued their education or took the opportunity to travel.  These impressive rates of employability continue for our Master graduates, of whom 91% were employed, whilst 4% were travelling.'

Thetext[9] = 'In 2009 there were 1000 students from 47 different countries studying at the Royal Agricultural College.'

Thetext[10] = 'Ladies were first admitted to the College in 1979. Their numbers have risen dramatically and 44% of current RAC students are female.'

Thetext[11] = 'The College motto is Arvorum Cultus Pecorumque, a quote from Virgil&rsquo;s Georgics meaning "caring for the fields and the beasts". The College continues to enact its educational, research and consultancy commitment in keeping with this motto.'

Thetext[12] = 'The RAC offers over 40 career-focused programmes within the Schools of Agriculture, Business and Rural Economy and Land Management.'

Thetext[13] = 'The RAC was the first agricultural college in the English speaking world. Queen Victoria granted the Royal Charter to the College in 1845. Sovereigns have been Patrons ever since, visiting the College in every reign. His Royal Highness The Prince of Wales became President in 1984.'

Thetext[14] = 'The star on the shield of the College crest represents Sirius, often called the Dog Star. This star was used by the ancient Egyptians as a basis for their calendar, and to calculate the annual flooding of the Nile on which their agricultural economy rested.'



var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<div style="width:283px;">');
document.write('<div style="float:left; width:168px; padding-right:5px;">');
document.write('<p>'+Thetext[whichImage]+'</p>');
document.write('</div>')
document.write('<div style="float:left; width:110px;">');
document.write('<img src="'+theImages[whichImage]+'" alt="RAC Fact: '+Thetext[whichImage]+'" width="110px" height="150px">');
document.write('</div>')
document.write('</div>')
}