//-- main buttons -------------
function mOverBtn(divID){
	//document.getElementById(divID).style.backgroundColor = '#EEEEDD';
	//document.getElementById(divID).style.fontWeight = 'bold';
}
function mOutBtn(divID){
	//document.getElementById(divID).style.backgroundColor = '#AA9944';
	//document.getElementById(divID).style.fontWeight = 'normal';
}
//-- side menu button functions -------------
//-- title buttons
function mOverTitleBtn(divID){
	document.getElementById(divID).style.backgroundColor = '#CC3333';
	document.getElementById(divID).style.color = '#000000';
	//document.getElementById(divID).style.textDecoration = 'underline';
}
function mOutTitleBtn(divID){
	document.getElementById(divID).style.backgroundColor = '#990000';
	document.getElementById(divID).style.color = '#FFFFFF';
}
//-- sub buttons
function mOverSBtn(divID){
	document.getElementById(divID).style.backgroundColor = '#F3F3F3';
	//document.getElementById(divID).style.textDecoration = 'underline';
}
function mOutSBtn(divID){
	document.getElementById(divID).style.backgroundColor = '#FFFFFF';
}
//-- page redirect -----------------------
function gotoPage(pName){
	document.location.href = pName;
}