// JavaScript Document
<!--

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

//store the quotations in arrays

images = new Array(6);

images[0] = "<a href = 'projectreviews_health.htm'><img src='images/projectreviews/healthfitness/chiswick.jpg' alt='health & fitness' border='0'></a>";
images[1] = "<a href = 'projectreviews_health.htm'><img src='images/projectreviews/healthfitness/gloucester.jpg' alt='health & fitness' border='0'></a>";
images[2] = "<a href = 'projectreviews_health.htm'><img src='images/projectreviews/healthfitness/newbury.jpg' alt='health & fitness' border='0'></a>";
images[3] = "<a href = 'projectreviews_health.htm'><img src='images/projectreviews/healthfitness/norfolk.jpg' alt='health & fitness' border='0'></a>";
images[4] = "<a href = 'projectreviews_health.htm'><img src='images/projectreviews/healthfitness/rollout.jpg' alt='health & fitness' border='0'></a>";
images[5] = "<a href = 'projectreviews_health.htm'><img src='images/projectreviews/healthfitness/surbiton.jpg' alt='health & fitness' border='0'></a>";
index = Math.floor(Math.random() * images.length);

document.write(images[index]);

//done

// -->