function changeImage (imageId, imageName) {
	var obj = document.getElementById(imageId);
	obj.setAttribute('src', imageName);
} 


