$(document).ready(function() {
	$(".initiallyHidden").hide();
	$(".expander").click(function() {
		$("."+$(this).attr("id")).toggle();
	});
});