

function changeMenu(obj,state) {
	if (state == 'on') {
		document.getElementById(obj).style.color = '#ff660d';
	} else {
		document.getElementById(obj).style.color = 'navy';
	}//end if
}