( function ( $ ) {

var option =
{
    type    : 'post',
    url     : '/app/ajax/showcase-congress-groups/list/grade/1',
    async   : false,
    success : function ( html )
    {
        $( '#listPeople' ).append( html );
    }
};

$( document ).ready( function () { $.ajax( option ); } );

} )( jQuery );
