// JavaScript Document
<!--

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

//store the quotations in arrays

images = new Array(3);

images[0] = "<a href = 'projectreviews_industrial.htm'><img src='images/projectreviews/industrial/menzieswarehouse.jpg' alt='industrial' border='0'></a>";
images[1] = "<a href = 'projectreviews_industrial.htm'><img src='images/projectreviews/industrial/schipol.jpg' alt='industrial' border='0'></a>";
images[2] = "<a href = 'projectreviews_industrial.htm'><img src='images/projectreviews/industrial/schipol2.jpg' alt='industrial' border='0'></a>";
index = Math.floor(Math.random() * images.length);

document.write(images[index]);

//done

// -->