// JavaScript Document
function showImage(){							
var theImages = new Array();	
theImages[0] = 'http://www.rupertsanderson.com/welcome/rupert-sanderson-luxury-shoes-02.jpg';
theImages[1] = 'http://www.rupertsanderson.com/welcome/rupert-sanderson-luxury-shoes-03.jpg';
theImages[2] = 'http://www.rupertsanderson.com/welcome/rupert-sanderson-luxury-shoes-05.jpg';
theImages[3] = 'http://www.rupertsanderson.com/welcome/rupert-sanderson-luxury-shoes-06.jpg';
theImages[4] = 'http://www.rupertsanderson.com/welcome/rupert-sanderson-luxury-shoes-08.jpg';
var p = theImages.length;	
var whichImage = Math.round(Math.random()*(p-1));	
document.write('<img width=656 height=678 src="'+theImages[whichImage]+'">');}
