$(document).ready(function() {
    $('.spoiler').toggle(function() {
        $(this).prev().fadeIn();
        $(this).hide();
    }, function() {
        $(this).prev().fadeOut();
    });
 
});