function shade(button) {
	button.style.backgroundColor='#ffffff';
}

function unshade(button) {
	button.style.backgroundColor='#eeeeff';
}