// This file should be included *after* searchlets.js
(function ($) {
    // Radiobuttons Options earchlet
    $.fn.smartsearch.searchlets.radiobuttons_options_accommodation_type = function (searchlet_name, description, update_delay) {
        $.fn.smartsearch.searchlets.radiobuttons_options.call(this, searchlet_name, description, update_delay);
    };
    $.fn.smartsearch.searchlets.radiobuttons_options_accommodation_type.prototype = new $.fn.smartsearch.searchlets.radiobuttons_options;

    $.fn.smartsearch.searchlets.radiobuttons_options_accommodation_type.prototype.remove = function (query_arg) {
        $.fn.smartsearch.searchlets.radiobuttons_options.prototype.remove.call(this, query_arg); // super call
        $("#accommodation_category_option__in").html("");
    }
})(jQuery);