var oldSRC = "";
function buttonOver(button, newSRC) {
	oldSRC = button.src;
	button.src = newSRC;
}

function buttonOut(button) {
	button.src = oldSRC;
}

