//main button functions ----------
function mBtnOver(id){
	document.getElementById(id).style.backgroundColor = '#663355';
	document.getElementById(id).style.color = '#DDEEDD';
	document.getElementById(id).style.borderRight = '1px solid #33AA33';
	document.getElementById(id).style.borderLeft = '1px solid #33AA33';
}
function mBtnOut(id){
	document.getElementById(id).style.backgroundColor = '';
	document.getElementById(id).style.color = '#fff';
	document.getElementById(id).style.borderRight = '0px';
	document.getElementById(id).style.borderLeft = '0px';
}
function mCatBtnOver(id){
	document.getElementById(id).style.backgroundColor = '#333388';
	document.getElementById(id).style.color = '#fff';
	document.getElementById(id).style.borderRight = '2px solid #000066';
	document.getElementById(id).style.borderLeft = '1px solid #000066';
	document.getElementById(id).style.borderTop = '1px solid #000066';
	document.getElementById(id).style.borderBottom = '2px solid #000066';
}
function mCatBtnOut(id){
	document.getElementById(id).style.backgroundColor = '';
	document.getElementById(id).style.color = '#CCCCDD';
	document.getElementById(id).style.borderRight = '2px solid #EEEEFF';
	document.getElementById(id).style.borderLeft = '1px solid #000066';
	document.getElementById(id).style.borderTop = '1px solid #EEEEFF';
	document.getElementById(id).style.borderBottom = '2px solid #000066';
}
function mSubCatBtnOver(id){
	document.getElementById(id).style.backgroundColor = '#333388';
	document.getElementById(id).style.color = '#fff';
	document.getElementById(id).style.borderRight = '2px solid #000066';
	document.getElementById(id).style.borderLeft = '1px solid #000066';
	document.getElementById(id).style.borderTop = '1px solid #000066';
	document.getElementById(id).style.borderBottom = '2px solid #000066';
}
function mSubCatBtnOut(id){
	document.getElementById(id).style.backgroundColor = '';
	document.getElementById(id).style.color = '#CCCCDD';
	document.getElementById(id).style.borderRight = '2px solid #EEEEFF';
	document.getElementById(id).style.borderLeft = '1px solid #000066';
	document.getElementById(id).style.borderTop = '1px solid #EEEEFF';
	document.getElementById(id).style.borderBottom = '2px solid #000066';
}