
$(document).ready(function() {

	$("a.loading[name]").each(function(){

		var self = $(this);

		$.get($(this).attr("name"), function(data) {
			self.after(data).remove();
		});

	});

});
