
var cdcCollapsed = "switch";

$(document).ready(function(){
	// hide
	$("#content-main div[@id*='-def']").toggle();
	// expand/collapse
	$("#content-main h3").each(function()
	{
		$(this).addClass(cdcCollapsed);
		$(this).attr("title","click to show/hide more info");
		$(this).click(function()
		{
			var x = "#" + this.id + "-def";
			$(x).toggle();
		});
	});

	// allow query string to open right one by id
	if (location.search.length != 0)
	{
		var x = location.search;
			x = location.search.replace("?","");
			$("#" + x + "-def").toggle();
			document.location.href = "#" + x;
	}
});