
$(document).ready(function(){
    $('p.h').hide();
    $('label.more').click(function() {
        $('p.h').show();
        $(this).hide();
    });
    $('label.h').hide();
    $('label.more0').click(function() {
        $('label.h').show();
        $(this).hide();
    });
    $('p.h1').hide();
    $('label.more1').click(function() {
        $('p.h1').show();
        $(this).hide();
    });
});

