/*
	John Nicholson & Dunelm Fine Art Index Random Image 
	Last edit: 05/01/2010 by John Metcalfe
*/
 
// Load Images
var theImages = new Array()
theImages[0] = 'http://www.johnnicholsonfineart.co.uk/images/uploads/manners%20a%20westmorland%20farm.jpg'
theImages[1] = 'http://www.johnnicholsonfineart.co.uk/images/uploads/atkinson alston.jpg'
theImages[2] = 'http://www.johnnicholsonfineart.co.uk/images/uploads/atkinson collecting corn.jpg'
theImages[3] = 'http://www.johnnicholsonfineart.co.uk/images/uploads/atkinson haytime.jpg'
theImages[4] = 'http://www.johnnicholsonfineart.co.uk/images/uploads/crawshaw venice.jpg'
theImages[5] = 'http://www.johnnicholsonfineart.co.uk/images/uploads/dack a quite pint.jpg'
theImages[6] = 'http://www.johnnicholsonfineart.co.uk/images/uploads/doyley john small.jpg'
theImages[7] = 'http://www.johnnicholsonfineart.co.uk/images/uploads/galle large bowl clematis.jpg'
theImages[8] = 'http://www.johnnicholsonfineart.co.uk/images/uploads/glass borders.jpg'
theImages[9] = 'http://www.johnnicholsonfineart.co.uk/images/uploads/halfnight hurley.jpg'
theImages[10] = 'http://www.johnnicholsonfineart.co.uk/images/uploads/herbert.jpg'
theImages[11] = 'http://www.johnnicholsonfineart.co.uk/images/uploads/howey.jpg'
theImages[13] = 'http://www.johnnicholsonfineart.co.uk/images/uploads/john charlton.jpg'
theImages[14] = 'http://www.johnnicholsonfineart.co.uk/images/uploads/liddel tyne.jpg'
theImages[15] = 'http://www.johnnicholsonfineart.co.uk/images/uploads/moore tynemouth.jpg'
theImages[16] = 'http://www.johnnicholsonfineart.co.uk/images/uploads/rainbird northumbrian moors.jpg'
theImages[17] = 'http://www.johnnicholsonfineart.co.uk/images/uploads/roe.jpg'
theImages[18] = 'http://www.johnnicholsonfineart.co.uk/images/uploads/slater heavy horses.jpg'
theImages[19] = 'http://www.johnnicholsonfineart.co.uk/images/uploads/sticks roshwaite.jpg'

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]
}

// Create function to load image
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img alt="Random image" src="'+theImages[whichImage]+'">');
}
