var Feed = {
	feedsUrl : false,
	fillFeedBoxes : function(arrayFeeds)
	{
		for(var i=0;i<arrayFeeds.length;i++)
			this.fillFeedBox(arrayFeeds[i]);
	},
	
	fillFeedBox : function(box)
	{
		var url = this.feedsUrl+"?feedKey="+box;
		$.getJSON(url,	function(data)
						{
							$("#"+box).html(data.html);
						});
	}
}


