function changeImageBackground(new_img, img_id) {
	var img = document.getElementById(img_id);
	img.src = new_img;
}
