var ImageArray = new Array(10);
var index;
// Put image names here
ImageArray[0] = "<img src='graphics/keynote/secondary1.gif' alt='Geese with a nice view of our countryside' width='288' height='216' hspace='10' vspace='10' border='0' align='right'>"
ImageArray[1] = "<img src='graphics/keynote/secondary2.gif' alt='Close up view of our Geese' width='288' height='216' hspace='10' vspace='10' border='0' align='right'>"
ImageArray[2] = "<img src='graphics/keynote/secondary3.gif' alt='Geese in one of our fields' width='288' height='216' hspace='10' vspace='10' border='0' align='right'>"
ImageArray[3] = "<img src='graphics/keynote/secondary4.gif' alt='Geese grazing in open field' width='288' height='216' hspace='10' vspace='10' border='0' align='right'>"
ImageArray[4] = "<img src='graphics/keynote/secondary5.gif' alt='Geese Feeding' width='288' height='216' hspace='10' vspace='10' border='0' align='right'>"
ImageArray[5] = "<img src='graphics/keynote/secondary6.gif' alt='Geese with our cattle' width='288' height='216' hspace='10' vspace='10' border='0' align='right'>"
ImageArray[6] = "<img src='graphics/keynote/secondary7.gif' alt='Geese with our dog Meg' width='288' height='216' hspace='10' vspace='10' border='0' align='right'>"
ImageArray[7] = "<img src='graphics/keynote/secondary8.gif' alt='Geese behind a lovely view' width='288' height='216' hspace='10' vspace='10' border='0' align='right'>"
ImageArray[8] = "<img src='graphics/keynote/secondary9.gif' alt='Geese with our dog Meg' width='288' height='216' hspace='10' vspace='10' border='0' align='right'>"
ImageArray[9] = "<img src='graphics/keynote/secondary10.gif' alt='Geese with our dog Meg' width='288' height='216' hspace='10' vspace='10' border='0' align='right'>"
index = Math.floor(Math.random() * ImageArray.length);
document.write(ImageArray[index]);