$(document).ready(function(){

	$("a.loading[href]").each(function(){

		var self = $(this);

		$.get($(this).attr("href"), function(data) {
			self.after(data).remove();
		});

	});

});
