function loadFeed(url,areas) {
	var news;
	jQuery.getFeed({
		url: url,
		success: function(feed){
			news = feed;
			var html = "";
			for(var index = 0; index < news.items.length && index < 4; index++) {
				var item = news.items[index];
				html += '<div class="news_date">';
				html += item.updated.split("T")[0].replace(/-/g,"/");
				html += '</div>';
				html += '<div class="news_text">';
				html += '<a href="' + item.link + '">';
				html += item.title;
				html += '</a>';
				html += '</div>';
			}
			$(areas).html(html);
		}
	 });
}

