
function toggle(which, dir) {
	if(dir == 'on') {
		which.style.backgroundColor = '#5E0071';
	} else if(dir == 'selected') {
		which.style.backgroundColor = '#0A640D';
	} else {
		which.style.backgroundColor = '#004802';
	}
}
