AJS.toInit(function ($) {

    $(".filter-control .waiting-image").hide();

    $("select.content-filter").change(function() {
        $(".filter-control .waiting-image").show();
        $.get(AJS.params.changesUrl, { "contentType" : $(this).val() }, function (data) {
            $(".results-container ul").html(data);
            $(".more-link-container .waiting-image").hide();
            $(".filter-control .waiting-image").hide();
            $(".more-link").click(AJS.GetMoreHelper.createGetMoreRequestListener());
        });
    });

});

