function ic_icon($OnState) {
	// Reset All Icons and Content Items
	for($i = 1; $i < 4; $i++) {
		document.getElementById('icon_' + $i).src = '/church/ministries/cm/images/button_off.gif';
		document.getElementById('text_' + $i).style.fontWeight = 'normal';
		document.getElementById('toggle_' + $i).style.display = 'none';
	}

	// Set the Current State
	document.getElementById('icon_' + $OnState).src = '/church/ministries/cm/images/button_on.gif';
	document.getElementById('text_' + $OnState).style.fontWeight = 'bold';
	document.getElementById('toggle_' + $OnState).style.display = '';
}

function show_b1_content($OnState) {
	// Set the Current State
	document.getElementById('b1_image').src = '/church/ministries/cm/images/cm_ic_b1-' + $OnState + '.gif';
	if1_content.location = '/church/ministries/cm/includes/ic_iframe_1_' + $OnState + '.php';
}

function show_b2_content($OnState) {
	// Set the Current State
	document.getElementById('b2_image').src = '/church/ministries/cm/images/cm_ic_b2-' + $OnState + '.gif';
	if2_content.location = '/church/ministries/cm/includes/ic_iframe_2_' + $OnState + '.php';
}