// This is the list of images to display randomly on the home page // The numbers in square braces [] MUST start from 0 and run sequentially, // but you may add as many as you require var homeImages = new Array(); homeImages[0] = '/international/_media/home/female_friends_earings.jpg'; homeImages[1] = '/international/_media/home/fire_dancer.jpg'; homeImages[2] = '/international/_media/home/male_science_students.jpg'; homeImages[3] = '/international/_media/home/oriental_dancer.jpg'; homeImages[4] = '/international/_media/home/red_dancers.jpg'; homeImages[5] = '/international/_media/home/sherwood_forest.jpg'; // This is the list of quotes to accompany the images // The number in square braces [] MUST match that of the associated image from // the list above var homeCaptions = new Array(); homeCaptions[0] = 'The University is a lively, friendly, global village'; homeCaptions[1] = 'Nottingham is an exciting and vibrant city'; homeCaptions[2] = 'Undergraduates can take part in genuine research – it is truly thrilling'; homeCaptions[3] = 'Nottingham provides an enriching academic experience'; homeCaptions[4] = 'Scholarships help us to promote diversity at the University'; homeCaptions[5] = 'The countryside around Nottingham is beautiful'; // This is the position in which the quote box for the relevant // image will appear // 1 = top left // 2 = top right // 3 = bottom left // 4 = bottom right var homeQuadrants = new Array(); homeQuadrants[0] = '4'; homeQuadrants[1] = '3'; homeQuadrants[2] = '4'; homeQuadrants[3] = '4'; homeQuadrants[4] = '3'; homeQuadrants[5] = '2'; // This is the list of background colours for the quote boxes // The number in square braces [] MUST match that of the associated image from // the list above var homeColours = new Array(); homeColours[0] = '#92C1AF'; homeColours[1] = '#FAB612'; homeColours[2] = '#666666'; homeColours[3] = '#FF4EA8'; homeColours[4] = '#9D0400'; homeColours[5] = '#77321A';