$.postJSON = function(url, data, callback) {
	$.post(url, data, callback, "json");
};
var C={
	bookmark: {
		add: function(topicId,tp) {
			$.postJSON('/addbookmarks.php?item=' + topicId + '&tp=' + tp, function(json) {
				link = $('a.favorites');
				if (json.action == 'done') {
					$(link).remove();
//					$(link).text('Удалить закладку');
//					$(link).attr('href', 'javascript:C.bookmark.del('+ topicId + ');');
				} 
			});
		},
		del: function(topicId) {
			$.postJSON('/delbookmarks.php?item=' + topicId, function(json) {
				link = $('a.favorites');
				if (json.action == 'done') {
					$(link).text('Добавить в закладки');
					$(link).attr('href', 'javascript:C.bookmark.add('+ topicId + ');');
				} 
			});
		}
	}
}