function newphilo() {
    jQuery.ajax({
	url: "/misc/philosophy/gen.pl",
	dataType: "text",
	success: function(txt) {
	    jQuery("#loader").html(txt);
	}
    });
}

// when the DOM is ready
jQuery(document).ready(function($){
    $("#generate").click(function () { newphilo(); });
    newphilo();
});

