var Feed=null;

function GetFeed(){

	var tmp=new Ajax.Request('./RSS2JSON.php', {
		onSuccess: function(transport) {
			Feed=transport['responseText'].evalJSON();
			ShowFeed();		
		}
	});
}

function ShowFeed(){
	var total=Feed['links'].size();
	var i=0;
	var FeedDiv=new Element("div",{id:'Feed'});
	while (i<total)
	{
		var t=Feed['links'][i];
		var string=t['date']+":<BR><a href='"+t['link']+"' target=_blank>"+t['title'].replace('Duncan84: ','')+"</a><BR><BR>";
		var tmp=new Element("div",{id:'Tweet_'+i}).update(string);
		FeedDiv.appendChild(tmp);
		i++;
	}
	$('FeedHolder').appendChild(FeedDiv);
}

