//-- main buttons -------------
function mOverBtn(divID){
	//document.getElementById(divID).style.fontWeight = 'bold';
}
function mOutBtn(divID){
	//document.getElementById(divID).style.fontWeight = 'normal';
}
//-- side menu button functions -------------
//-- title buttons
function mOverTitleBtn(divID){
	document.getElementById(divID).style.backgroundColor = '#F3F3F3';
	//document.getElementById(divID).style.textDecoration = 'underline';
}
function mOutTitleBtn(divID){
	document.getElementById(divID).style.backgroundColor = '#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;
}