var MBP = MBP || {};

MBP.Facebook = {
    share: function(options, cb) {
        FB.ui({
                method: 'feed',
                name: options.name,
                link: options.link,
                picture: options.picture,
                caption: options.caption,
                description: options.description,
                message: options.message
            },
            cb
        );
    }
}

