/*
 see collapsible panels section of CSS for style info
*/

$(document).ready(function(){
	$(".group_head").addClass("group_head_active").next(".group_body").hide();
	$(".group_head").click(function(){
		$(this).next(".group_body").slideToggle(500);
		$(this).toggleClass("group_head_active");
		return false;
	});
});
