var recent_items_start = 1;

$(document).ready(function(){
	$.post('/public/recent-items/', updateRecentItems);
});

function updateRecentItems(data) {
	$("#recentitems").empty();
	if(data != ""){
		$("#recentitems").html(data);
		$("#recent_items_titlebar a").bind("click", function() {	
			recent_items_start = $(this).attr("rel");
			$.post('/public/recent-items/?start='+$(this).attr("rel"),updateRecentItems);
		});
		$(".recent_items_delete").bind("click", function() {			
			$.post('/public/recent-items/?start='+recent_items_start+'&delete='+$(this).attr("rel"),updateRecentItems);
		});
	}
}
