/* Class for the sharethis module */
var sharethis = $.inherit(Module, {

    __constructor: function(moduleDivObject, editor) { 
        this.__base(moduleDivObject, editor);
    },

    displaySharePost: function() {
        $('.rssfeedHolder', this.container).toggle();
    }
});

