$(document).ready( function() {
   
   $(".more").click(function () {

        $(this).next("div").toggle();
        $(this).hide();
    });

    
    
});
