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