<!-- Begin
// Set up the image files to be used.
var theImages = new Array()
var theLinks = new Array()
var theAlt = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'images/home_kissingcouple.jpg';
theLinks[0] = 'news.html';
theAlt[0] =  'Kissing Couple. H22cm x W28 2004 Photo by Karin Ubeleis Jones';
theImages[1] = 'images/home_star.jpg';
theLinks[1] = 'sculptures_buying.html';
theAlt[1] =  'Star. H160cm x D45cm edition of 25, available as cold cast bronze £1500, or cast coloured resin £1000. Contact Faith for details. Photo Neil Hickson';
theImages[2] = 'images/home_fly.jpg';
theLinks[2] = 'sculptures_buying.html';
theAlt[2] =  'Fly 3. Silver painted fibreglass resin. Wall mountable H78 x D18cm 2004';
theImages[3] = 'images/home_fallingman.jpg';
theLinks[3] = 'sculptures_commissions.html';
theAlt[3] =  'Falling Man. Photo by Robert Carter';
theImages[4] = 'images/home_crown.jpg';
theLinks[4] = 'sculptures_commissions.html';
theAlt[4] =  'Crown exterior piece circle of four 6.5 ft high figures. Commissioned by Nuffield Hospitals for their newly built Leeds Nuffield Hospital. Installed 2002';

// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<a href="'+theLinks[whichImage]+'"><img border="0" src="'+theImages[whichImage]+'" alt="'+theAlt[whichImage]+'"></a>');
}
//  End -->