jQuery(function() {
	jQuery.getFeed({
		url: 'http://www.expanish.com/proxy.php?url=http://www.expanish.com/blog/feed/',
		success: function(feed) {
			jQuery('#rss').append();
			var html = '';
			for(var i = 0; i < feed.items.length && i < 5; i++) {
				var item = feed.items[i];
				html += '<span>'
				+ '<a href="'
				+ item.link
				+ '">'
				+ item.title
				+ '</a>'
				+ '</span>';
				html += '<div class="updated">'
				+ item.updated
				+ '</div>'; 
			}
			$("#rss").html("");
			jQuery('#rss').append(html);
		}
	});
});

