function confirm_mature() {
    return confirm("The publication you wish to view contains mature content that may not be suitable for all audiences. Are you sure you wish to view it?");
}

$(document).ready(function(){
    $(".mature").bind("click", function(){
        return confirm_mature();
    });
});
