$(document).ready(function() {
   	$.getJSON("http://pipes.yahoo.com/pipes/pipe.run?_id=f6968ffda5d6c40b5a6e14649f23f19b&\_render=json&_callback=?", 
      			function(data) {
				for (x = 0; (x < 10) && (x < data.count); x++)
 				{
					$('#bottomContentBox').append('<li><a href="' + 
	  				data.value.items[x].link + '">' + data.value.items[x].title + '</a><br/></li>');
 				}
      			});
  	});

