function changeIt(ImageToChange, ImageToShow) 
	{
	if (document.images) 
		{ 
		document[ImageToChange].src = ImageToShow; 
		}
	}

