$(document).ready(function() {
		$("a.showHideContent:has(.pre-expand)").click();

		// initialize the links in the bottom bar to respond to
		// the answer toggling
		$("a.showHideContent").bind("click.qa", function() {
			var qaBox = findQABox($(this));
			determineToggleAction(qaBox);
		});

		// initialize the links in the bottom bar to respond to
		// the answer toggling
		$("a.question").bind("click.qa", function() {
			if ($(this).hasClass("unclickable"))
				return;

				determineToggleAction(findQABox($(this)));
		});
	}
);
