$(document).ready(function(){
	$(".expander dd").hide();
	$(".expander dt").click(function(){
		$(this).next().toggle();
	});
	
	$(".hLevelExpander .sf_expandedList").hide();
	$(".hLevelExpander h2").click(function(){
		$(this).next().toggle();
	});
});