// JavaScript Document
<!--

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

//store the quotations in arrays

images = new Array(4);

images[0] = "<a href = 'projectreviews_residential.htm'><img src='images/projectreviews/residential/bedford.jpg' alt='residential' border='0'></a>";
images[1] = "<a href = 'projectreviews_residential.htm'><img src='images/projectreviews/residential/croydon.jpg' alt='residential' border='0'></a>";
images[2] = "<a href = 'projectreviews_residential.htm'><img src='images/projectreviews/residential/tiptree.jpg' alt='residential' border='0'></a>";
images[3] = "<a href = 'projectreviews_residential.htm'><img src='images/projectreviews/residential/wouldham.jpg' alt='residential' border='0'></a>";
images[4] = "<a href = 'projectreviews_residential.htm'><img src='images/projectreviews/residential/bishopspark.jpg' alt='residential' border='0'></a>";
images[4] = "<a href = 'projectreviews_residential.htm'><img src='images/projectreviews/residential/dolphinsquare.jpg' alt='residential' border='0'></a>";
index = Math.floor(Math.random() * images.length);

document.write(images[index]);

//done

// -->