
function button_mover(button) {
	button.style.color='#006666'; 
	button.style.backgroundColor='#AFCFCF';
}

function button_mout(button) {
	button.style.color='#ffffff';
	button.style.backgroundColor='#006666';
}


