// JavaScript Document

function changeButton(id, url) {
	obj = document.getElementById("button"+id);
	obj.src = url;
}


