//-- main buttons -------------
function mOverBtn(divID){
	document.getElementById(divID).style.backgroundColor = '#88DD00';
	document.getElementById(divID).style.color = '#000000';
}
function mOutBtn(divID){
	document.getElementById(divID).style.backgroundColor = '#EEEEEE';
	document.getElementById(divID).style.color = '#999999';
}
//-- side menu button functions -------------
function mOverSBtn(divID){
	document.getElementById(divID).style.backgroundColor = '#fff';
	document.getElementById(divID).style.color = '#000088';
	document.getElementById(divID).style.borderBottom = '1px solid #000088';
}
function mOutSBtn(divID){
	document.getElementById(divID).style.backgroundColor = '#EEEEFF';
	document.getElementById(divID).style.color = '#000000';
	document.getElementById(divID).style.borderBottom = '1px solid #000088';
}
