// JavaScript Document
<!--

//Javascript Created by Computerhope http://www.computerhope.com

//store the quotations in arrays

images = new Array(7);

images[0] = "<a href = 'projectreviews_holiday.htm'><img src='images/projectreviews/holidayparks/crimdon.jpg' alt='holiday parks' border='0'></a>";
images[1] = "<a href = 'projectreviews_holiday.htm'><img src='images/projectreviews/holidayparks/devonfec.jpg' alt='holiday parks' border='0'></a>";
images[2] = "<a href = 'projectreviews_holiday.htm'><img src='images/projectreviews/holidayparks/devonspa.jpg' alt='holiday parks' border='0'></a>";
images[3] = "<a href = 'projectreviews_holiday.htm'><img src='images/projectreviews/holidayparks/martello.jpg' alt='holiday parks' border='0'></a>";
images[4] = "<a href = 'projectreviews_holiday.htm'><img src='images/projectreviews/holidayparks/martonmere.jpg' alt='holiday parks' border='0'></a>";
images[5] = "<a href = 'projectreviews_holiday.htm'><img src='images/projectreviews/holidayparks/perran.jpg' alt='holiday parks' border='0'></a>";
images[6] = "<a href = 'projectreviews_holiday.htm'><img src='images/projectreviews/holidayparks/presthaven.jpg' alt='holiday parks' border='0'></a>";
images[6] = "<a href = 'projectreviews_holiday.htm'><img src='images/projectreviews/holidayparks/primrosevalley.jpg' alt='holiday parks' border='0'></a>";
index = Math.floor(Math.random() * images.length);

document.write(images[index]);

//done

// -->