$(document).ready(function() {
	$('#popInterests').click(loadInterests);
});

function loadInterests(e) {
	e.preventDefault();
	$('.loading').show();
	$('#popup').load($(this).attr('href'), loadInterestsCallback);
}

function loadInterestsCallback() {
	$('.loading').hide();
	$('#popup').lightbox_me({ centered: true, destroyOnClose: true });
	$('#popup li a.remover').click(removeInterest);
}

function removeInterest(e) {
	e.preventDefault();
	$('.loading').show();
	$.get($(this).attr('href'), removeInterestCallback);
}

function removeInterestCallback(data) {
	$('.loading').hide();
	$('#p' + data).hide(true);
}
