//-- main buttons -------------
function mOverBtn(divID){
	document.getElementById(divID).style.backgroundColor = '#FFDDFF';
	document.getElementById(divID).style.color = '#000';
}
function mOutBtn(divID){
	document.getElementById(divID).style.backgroundColor = '#FFEEFF';
	document.getElementById(divID).style.color = '#000';
}
//-- product menu button functions -------------
function mOverSBtn(divID){
	document.getElementById(divID).style.backgroundColor = '#FFEEFF';
	document.getElementById(divID).style.color = '#000000';
	//document.getElementById(divID).style.borderTop = '1px solid #99BB44';
	//document.getElementById(divID).style.borderBottom = '1px solid #99BB44';
}
function mOutSBtn(divID){
	document.getElementById(divID).style.backgroundColor = '#000000';
	document.getElementById(divID).style.color = '#FF99FF';
	//document.getElementById(divID).style.borderTop = '1px solid #DDDDDD';
	//document.getElementById(divID).style.borderBottom = '1px solid #DDDDDD';
}
function mOverTitleBtn(divID){
	document.getElementById(divID).style.backgroundColor = '#FFEEFF';
	document.getElementById(divID).style.color = '#000000';
	//document.getElementById(divID).style.borderBottom = '1px solid #99BB44';
}
function mOutTitleBtn(divID){
	document.getElementById(divID).style.backgroundColor = '#000000';
	document.getElementById(divID).style.color = '#FF99FF';
	//document.getElementById(divID).style.borderBottom = '1px solid #000000';
}