var get_fb_feed = function(limit) {
	//Display the latest FB posts.
	var page_url = 'http://www.facebook.com/pages/The-American-String-Project/334199775376';
	var feed_url = 'http://graph.facebook.com/334199775376/feed';
	var s = "";
	$.getJSON(feed_url+'?limit='+limit+'&callback=?', function(json) {
		$.each(json.data, function(i, post) {
			s += '<div>'+'<a href="'+page_url+'">'+post.updated_time.slice(0, 10)+'</a>';

			//None of these are mutually exclusive
			if(post.picture){
				s += '<img src="'+post.picture+'" alt="" />';
			}
			if(post.type == "link"){
				s += '<br /><a href="'+post.link+'">'+post.link+'</a>';
			}
			if(post.message){
				s += '<br />'+post.message;
			}
			s += '</div>';
		});
		$('#fb_feed > div').html(s);
	});

}

