//main button functions ----------
function mBtnOver(id){
	document.getElementById(id).style.backgroundColor = '#007700';
	document.getElementById(id).style.color = '#DDEEDD';
}
function mBtnOut(id){
	document.getElementById(id).style.backgroundColor = '#DDEEDD';
	document.getElementById(id).style.color = '#007700';
}
//----------------------------------------