jQuery.fn.unfold = function(){
    var elements = $(this);
    $(elements).each(function(index, element){
        $(element).click(function(){
            $(this).next('.toUnfold').toggle(120);
        });
    });
}

$(document).ready(function(){
   $('.toUnfold').hide();
   $('.unfold').unfold();
});
