// JavaScript Documentfunction showImage(){							var theImages = new Array()	theImages[0] = 'http://www.rupertsanderson.co.uk/img/gen/store-1.jpg'	theImages[1] = 'http://www.rupertsanderson.co.uk/img/gen/store-2.jpg'	theImages[2] = 'http://www.rupertsanderson.co.uk/img/gen/store-3.jpg'	theImages[3] = 'http://www.rupertsanderson.co.uk/img/gen/store-4.jpg'	theImages[4] = 'http://www.rupertsanderson.co.uk/img/gen/store-5.jpg'	theImages[5] = 'http://www.rupertsanderson.co.uk/img/gen/store-6.jpg'	theImages[6] = 'http://www.rupertsanderson.co.uk/img/gen/store-7.jpg'	var p = theImages.length;	var whichImage = Math.round(Math.random()*(p-1));	document.write('<img width=345 height=375 src="'+theImages[whichImage]+'">');}