1var totd_loadnew = function(id, totd) {
2
3        jQuery.post(DOKU_BASE + 'lib/exe/ajax.php',
4        {
5            call: '_totd_loadnew',
6            id: id,
7            totd: totd
8        }, function(data) {
9            jQuery('#totd_plugin').html(data);
10        });
11};
12