( function ( $ ) {

var option =
{
    type    : 'post',
    url     : '/app/ajax/informs/list/disclosure/3',
    async   : false,
    success : function ( html )
    {
        $( '#info-cont' ).append( html );

        setTimeout( function () { $( '.people_box' ).autoHeight( { column : 3, clear : 1, height : 'height' } ); }, 1200 );
    }
};

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

} )( jQuery );
