$.headJS('/js/popup-filter-list.js');

$(function(){
  new PopupFilter({
    id        : 'filter-subject',
    url       : '/json.company.specializations/',
    depth     : 2,
    columns   : 2,
    volatile  : 0.2,
    name      : 'subject',
    activator : '#filter .fContent .subject',
    popup     : {
      title     : 'Сфера деятельности',
      width     : 600,
      height    : 400,
      overflow  : 'auto'
    }
  });
  new PopupFilter({
    id        : 'filter-region',
    url       : '/json.geo.list/',
    depth     : 1,
    columns   : 3,
    name      : 'region',
    activator : '#filter .fContent .region',
    onload    : function(PopupFilter)
    {
      geoSuggestPrepare(PopupFilter, $('#filter-region'), $('#filter .fContent .region'), '/companies/filter/region/');
    },
    popup     : {
      title     : 'Регион',
      width     : 550,
      height    : 225,
      overflow  : 'auto'
    }
  });
})
