$(document).ready(function() {
	
	$('ul#groups li.group_title span:first-child').toggle(function() {
		$(this).parent().children('.group_info').slideDown('slow');
	}, function() {
		$(this).parent().children('.group_info').slideUp('slow');
	});
	
});
