

$(document).ready(function() {
	$.getJSON('http://pipes.yahoo.com/pipes/pipe.run?_id=4b068e88be2238706b0e8296dd92b049&_render=json', function(data) {
	  var list = [];
	
	  $.each(data.value.items, function(i,item) {
	  	if (i < 1){
	    	list.push('<li>'+item.description+'</li>');
	    }
	  });
	
	  $('<ul/>', {
	    'class': 'my-new-list',
	    html: list.join('')
	  }).appendTo('#fb-stream');
	});
});
