$( function() {

    $('#morephotos').toggle( function () {
        var height = $( '#allanother table' ).height();
        $('#allanother').animate( {'height': height+'px' } );
        $(this).html('убрать');
    }, function () {
        $('#allanother').animate( {'height': '0'} );
        $(this).html('еще фотографии');
});

});
