function showGroupContents(id, show){
	if(show == true){
		$('#content_panel_'+id).load('/tamtamy/group/lastContents-'+id+'-3.action');
		$('#content_panel_'+id).slideToggle('show');
	}
	else{
		$('#content_panel_'+id).slideToggle('hide');
	}
	return false;
}




