function readFeed(){
	$.ajax({
	   type: "GET",
	   url: "http://www.americanpizzaparty.com/ajax/aggForum.ajax.php",
	   success: function(msg){
			document.getElementById("lastAPP").innerHTML = msg;
			document.getElementById("lastAPP").innerHTML = document.getElementById("response").innerHTML;
			hideLastAPP();
		}
	});
}

function showLastAPP(){
	$("#lastAPP").show();
	$("#tabLastAPP").show();
	$("#hideLinkAPP").show();
	$("#showLinkAPP").hide();
}

function hideLastAPP(){
	$("#lastAPP").hide();
	$("#tabLastAPP").hide();
	$("#hideLinkAPP").hide();
	$("#showLinkAPP").show();
}