// JavaScript Document

function ButtonHover(id) {
	document.getElementById(id).style.backgroundColor = "#E2DB9A";
	document.getElementById(id).style.color = "#20A64B";
}

function ButtonHoverOut(id) {
	document.getElementById(id).style.backgroundColor = "#20A64B";
	document.getElementById(id).style.color = "#FFFFFF";
}
	

