$(function(){
	$('#profileLeft').load('http://noveladventures.cbs.com/user/KeishaBrown/friends_list/10/0',function(){
		$(this).slideDown();
	});
	
	$('.pagination > a').livequery('click',function(event){
		var target = $(this).parent().parent().parent();
		$.post($(this).attr('href'),function(data){
			alert(target.attr('id')+" "+target.attr('class'))
			target.empty();
			target.append(data);
		});
	return false;
	});
	
});

