
function changeImage(name, img) {
	if (document.images) {
			document[name].src = img;
		}

}