$(document).ready(function(){
	// hide all subgroups at the beginning
	$("#menuleftcontent ul").hide();

	// toogle clicked group
	$("p.group2").click(function(event){
								 
		clicked_id = $(this).attr('id');

		// hide all but the clicked
		$("p.group2").each(function(){
			if($(this).attr('id')!=clicked_id){
				$(this).next().slideUp(150);
			}
		});
		
		// Toggle clicked group
		$(this).next().slideToggle(150);
	});
		
});
