			function parseXml(xml)
			{
				$("#money_total").text($(xml).find("collectedAmount").text());
				$("#money_target").text($(xml).find("targetAmount").text());
				$("#money_contributors").text($(xml).find("contributors").text());
				$("#money_info").text("Done Updating");
			}
			
			function updateTotals(){
				$("#money_info").text("Updating ...");
				$.ajax({
					type: "GET",
					url: "feed.php",
					dataType: "xml",
					success: parseXml
				});
			}
	
