function makeActiveButton(button) {
	// 1.  Clear the current active button
	$('.red_button.active').removeClass('active');
	
	// 2.  Set me as the active button
	$(button).addClass("active");
}
