function MouseInButton(item) {
	item.style.color = "#000000";
	item.style.backgroundColor = "#326633";
	item.style.cursor = "hand";
}

function MouseOutButton(item) {
	item.style.color = "#FFFFFF";
	item.style.backgroundColor = "#4a7a2a";
}
