function getSections(uid) {
	showLoading();
	$.ajax({
		url: "modules/SectionLink/ajax/getSections.php?uid=" + uid,
		success: function(data) {
		    $("#sections").html(data);
			hideLoading();
		}
	});
}
