Devo usar Meteor.startup () ou $ (function () {})

Eles fazem a mesma coisa?

Qual deles devo usar dentro do cliente?

if ( Meteor.is_client ) {
    Meteor.startup(function () {
        // my code here
    });
}

ou

if ( Meteor.is_client ) {
    $(function() {
        // my code here
    });
}