function UpdateFeed() {
	$("#FeedUpdating").show();
	$.getJSON('ajax.php?action=loadfeeditems&postguid='+MainPostGUID+'&date='+NewestDate,function(data) {
		if (data && data['html']) {
			$("#FeedContent").prepend(data['html']);
			$(".FeedItem.New").hide();
			$(".Notification").html("Click here to display "+$(".FeedItem.New").size()+" new items").slideDown();
			$(".FeedLinks a").tipTip({delay:0,defaultPosition:"left"});
			NewestDate=data['NewestDate'];
		}
		$("#FeedUpdating").hide();
		setTimeout("UpdateFeed();",30000);
	});
}

function StartFeedUpdateTimer() {
	setTimeout("UpdateFeed();",30000);
}

function ShowNewFeedItems() {
	$(".Notification").slideUp();
	$("#FeedMessage").slideUp();
	$(".FeedItem.New").fadeIn().removeClass("New");
}
