/* --- js/listing.js -- start -------------------------------------- *
 * 
 * $Id: listing.js 130 2010-07-13 22:58:23Z vugluskr $
 *
 * Require:
 *   jquery.cookie.js
 */

function adult(obj) {
    if ($(obj).attr("checked")) {
        $.cookie('adult', 1, {path: '/'});
    } else {
        $.cookie('adult', 0, {path: '/'});
    }
    document.location.reload();
}

function mass_moderation(set_stat) {
    $('.imgblock input[name^="moderation"]').attr('checked', set_stat);
}
/* --- js/listing.js -- end ---------------------------------------- */
