// JavaScript Document

function random_img(){
var ranimage = new Array();
ranimage[1] = "G-reedbed.jpg";
ranimage[2] = "G-WrithlingtonBusEnt-ext.jpg";
ranimage[3] = "G-leadershipcccres-rear.jpg";
ranimage[4] = "G-hengrovedome.jpg";
ranimage[5] = "G-WrithlingtonBusEnt-int.jpg";
captions = ['','Reedbed at Leadership Trust, Ross-on-Wye','Business &amp; Enterprise Centre, Writhlington School, Radstock','Customised Course Centre, Leadership Trust, Ross-on-Wye','Timber Geodesic Dome at South Bristol Play Park, Hengrove, Bristol','Business &amp; Enterprise Centre, Writhlington School, Radstock',];
var ry = Math.floor(Math.random()*ranimage.length);
if (ry==0) ry=1; document.write('<img src="'+ranimage[ry]+'" alt="image of project" width="270" height="475"><div class="imgcaption"> '+captions[ry]+' </div>');
}