// JavaScript Document
function randomImage(imageName, extension, width, height, imageQuantity) {	

	var currentNumber = Math.ceil(Math.random() * imageQuantity);
	document.write('<img src="images/' + imageName + currentNumber + extension + '" width="' + width + '" height="' + height + '" alt="our mission:  to help our customers succeed" />');
	
}
