image = new Array

// Enter the images to appear
// All images should be saved in the img/mainpage folder on the remote server
// All images should be 270 x 180 pixels
image[1]="img/mainpage/forest1.JPG"
image[2]="img/mainpage/pickingfruit1.JPG"
image[3]="img/mainpage/seedlings1.JPG"
image[4]="img/mainpage/soiltest1.JPG"
image[5]="img/mainpage/yellowfield1.JPG"
image[6]="img/mainpage/waterways1.JPG"
image[7]="img/mainpage/cheese1.JPG"
image[8]="img/mainpage/dairycow1.JPG"
image[9]="img/mainpage/greenfield1.JPG"
image[10]="img/mainpage/horse1.JPG"

quote = new Array

// Enter the text that you want to appear beneath the corresponding image
quote[1]="Consider a career in ecosystem management"
quote[2]="Broadest agricultural faculty in Australia"
quote[3]="Glasshouses are vital for quality research"
quote[4]="Focussing on science based education"
quote[5]="Burnley attracts students worldwide"
quote[6]="Tackle Australia's water management problem"
quote[7]="At the cutting edge of food technology"
quote[8]="Developing world's best practice"
quote[9]="Preparing for all seasons"
quote[10]="Advancing the Sport of Kings"

// The next line creates a random number from within the number of images available
// The number appearing after Math.random()* must be one less than the total number of images listed above
random_num = (Math.round((Math.random()*9)+1))

// Write the image tag with a random array element
document.write("<li><img src=\"" + image[random_num] + "\"></li><p><li>" + quote[random_num] + "</li></p>"); 

