$(document).ready(function() {

	$("#featuredLecturesListSleeve, #ifYesTeacher").addClass("jQuery-compatible");
	if ( $("input#radioYes").is(":checked") ) { $("#ifYesTeacher").show() } else { $("#ifYesTeacher").hide() }; /* <- just in case the "Yes" radio button is already selected at page-load time */
   
	$("#flListSectionsNav .flSectionTitle a").removeAttr("href");

	$("#flListSectionsNav .flSectionTitle a").click(function () {
			var linkRef = $(this).parents(".flSectionTitle").attr("id");
			var clickedTitle = linkRef.substring(6);
			$(this).parents("#flListTree").removeClass().addClass("selectionID-"+clickedTitle);
	});

	$("input#radioYes, input#radioNo").click(function () {
			if ( $("input#radioYes").is(":checked") ) { $("#ifYesTeacher").show() } else { $("#ifYesTeacher").hide() };
	});
    
});


