jQuery(document).ready(function() {
	var chris_url = "http://pipes.yahoo.com/pipes/pipe.run?_id=79d0a26f70314828ad3d871acffaebab&_render=json&_callback=?";
	jQuery.getJSON(chris_url, 
		function(data){
			//$.each(data.value.items, function(i, item) {
				var t = data.value.items[0].title;
				jQuery("#chris_twitterfeed").append(t.substring(11));
			//});
		}
	);
});