$.noConflict();
jQuery(document).ready(function($) {
    // Code that uses jQuery's $ can follow here.
    $('#error-container div.error,#error-container div.success,div.error').delay(5000).fadeOut(300);

            

    $("#filter-id").click(function(){
        var getvars=$('#filter-form').serialize();
        $.post("/build-search-query",getvars, function(data){
            location.href=data;
        });
    });
});
  // Code that uses other library's $ can follow here.
