var OtkInputFileMultiple = Class.create({
    initialize: function(wrapper, id_c) {
        wrapper = $(wrapper);
        new Ajax.Updater(wrapper, 'community/file_input.php?name=_' + Math.floor(Math.random() * 10000) + '&id_c=' + id_c, {
            insertion: Insertion.Top
        });
    }
});
