// JavaScript Document

<!-- Begin
	var theImages = new Array() 

/*
		theImages[0] = 'images/random_images/left02.jpg'
		theImages[1] = 'images/random_images/left03.jpg'
		theImages[2] = 'images/random_images/left04.jpg'
		theImages[3] = 'images/random_images/left05.jpg'
		theImages[4] = 'images/random_images/left06.jpg'
		theImages[5] = 'images/random_images/left07.jpg'
*/

		theImages[0] = 'images/random_images/newleft.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]
	}
	var whichImage = Math.round(Math.random()*(p-1));
	function showImage(){
		document.write('<a target=new href=\'http://www.xerox.com\'> <img border=0 src="'+theImages[whichImage]+'"></a>');
}

//  End -->
