// Sets the source of a image in the document
function setImageSrc(i, theSource)
{
	document.images[i].src = theSource;
}

