

//Javacript Random Image Generator

//store the quotations in arrays

images = new Array(6);


images[0] = "<a href = 'http://www.ystrad-mynach.ac.uk/jobs.aspx'><img src='/imagesnew/imagesheader/information boxes/jobs_a_the_coleg.jpg' alt='Jobs'></a>";

images[1] = "<a href = 'http://www.ystrad-mynach.ac.uk/facilities/scholars-restaurant.aspx'><img src='/imagesnew/imagesheader/information boxes/scholars_restaurants.jpg' alt='Scholars Restaurant'></a>";

images[2] = "<a href = 'http://moodle.ystrad-mynach.ac.uk'><img src='/imagesnew/imagesheader/information boxes/moodle.jpg' alt='Moodle'></a>";


images[3] = "<a href = 'http://www.ystrad-mynach.ac.uk/request-a-prospectus.aspx'><img src='/imagesnew/imagesheader/information boxes/requestprospectus.jpg' alt='Request A Prospectus'></a>";

images[4] = "<a href = 'http://www.ystrad-mynach.ac.uk/apply-online.aspx'><img src='/imagesnew/imagesheader/information boxes/applyonline.jpg' alt='Apply Online'></a>";

images[5] = "<a href = 'http://www.ystrad-mynach.ac.uk/work-based-learning.aspx'><img src='/imagesnew/imagesheader/information boxes/work based learning.jpg' alt='Work Based Learning'></a>";


index = Math.floor(Math.random() * images.length);

document.write(images[index]);

//done








