function towardmay_feed(count) {
	$("#blog_timeline").empty();
	$.get('http://towardmay.com/insight/feed/', function(d) {
		$(d).find('item').each(function() {
		    if (count == 0) { return };
		    count--;;
			var $item = $(this);
			var title = $item.find('title').text();
			var link = $item.find('link').text();
			var description = $item.find('description').text().substring(0, 150);
			var snippet = "<div class=\"entry\"><a href=\"" + link + "\" title=\"Permanent link to "+title+" \">" + title + "<\/a>";
			snippet += " &mdash; " + description + "...<\/div>";
			$('#blog_timeline').append($(snippet));
		});
	});

};
