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