jQuery(document).ready(function() {

	jQuery(".extern-feed")
		.append("<ul><li>Chargement...</li></ul>")
		.each( function(i) {
		
			var sFeedId = this.id;
			
			jQuery.ajax({
				url: "http://jebulle.net/wp-content/themes/fluid-blue/ajax-handler.php?feed="+ sFeedId,
				cache: false,
				success: function(html){
					jQuery("#"+ sFeedId +" ul").replaceWith(html);
				}
			});
		});
});
