

//Javacript Random Image Generator

//store the quotations in arrays

images = new Array(12);


images[0] = "<a href = 'http://www.ystrad-mynach.ac.uk/events.aspx'><img src='/imagesnew/imagesheader/information boxes/events.jpg'' alt='events'></a>";

images[1] = "<a href = 'http://www.ystrad-mynach.ac.uk/facilities/salons.aspx'><img src='/imagesnew/imagesheader/information boxes/hair_and_beautys.jpg' alt='Hair and Beauty Salon'></a>";

images[2] = "<a href = 'http://www.ystrad-mynach.ac.uk/higher-education.aspx'><img src='/imagesnew/imagesheader/information boxes/higher_education.jpg' alt='Higher Education'></a>";

images[3] = "<a href = 'http://www.ystrad-mynach.ac.uk/online-enrolment.aspx'><img src='/imagesnew/imagesheader/information boxes/onlineenrolment.jpg' alt='Online Enrolment'></a>";


images[4] = "<a href = 'http://www.ystrad-mynach.ac.uk/community-classes.aspx'><img src='/imagesnew/imagesheader/information boxes/communityclasses.jpg' alt='Community Classes'><a>";

images[5] = "<a href = 'http://www.ystrad-mynach.ac.uk/international-students/host-families-wanted.aspx'><img src='/imagesnew/imagesheader/information boxes/hostfamily.jpg' alt='Host Family'><a>";



images[6] = "<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[7] = "<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[8] = "<a href = 'http://moodle.ystrad-mynach.ac.uk'><img src='/imagesnew/imagesheader/information boxes/moodle.jpg' alt='Moodle'></a>";


images[9] = "<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[10] = "<a href = 'http://www.ystrad-mynach.ac.uk/apply-online.aspx'><img src='/imagesnew/imagesheader/information boxes/applyonline.jpg' alt='Apply Online'></a>";

images[11] = "<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






