


$(document).ready(function(){
attachGroupButtonHandlers();
});





function attachGroupButtonHandlers() {
	
	//Leave group button (group microprofile
	$('ul.groupFunctionButtons li.leaveGroup a').click(function(e){
		e.preventDefault();	e.stopPropagation();
		$.get($(this).attr('href'),function(data){ groupLeaveGroupBt(data); })
	})		
	
	
}


function groupLeaveGroupBt(data) {
    //used to remove the profile item from display
	if(data=='OK') {
	     window.location=window.location;
	}	
}


