0)
{ if(!is_fixed) make_fix(); is_fixed = true; }
oot = jQuery('#oferta_div').offset().top;
if(st < oot)
{ if(is_fixed) un_fix(); is_fixed = false; }
bmax = jQuery('#site_bottom_div').outerHeight();
if(sb < bmax)
{ jQuery('#oferta_filters_div').css('bottom', bmax - sb + 15 + 'px'); }
}
jQuery(document).ready(function() {
if(isMobileWidth(1200))
jQuery(window).scroll(scrollHandler);
});
function make_fix()
{
jQuery('#oferta_filters_div').addClass('_fixed');
left = jQuery('#oferta_div').offset().left;
jQuery('#oferta_filters_div').css('left', left + 'px');
jQuery('#oferta_filters_div').css('top', 'auto');
jQuery('#oferta_filters_div').css('bottom', '10px');
jQuery('#oferta_filters_dum').css('display', 'block');
}
function un_fix(where)
{
jQuery('#oferta_filters_div').removeClass('_fixed');
jQuery('#oferta_filters_div').css('left', 'auto');
jQuery('#oferta_filters_div').css('top', 'auto');
jQuery('#oferta_filters_div').css('bottom', 'auto');
jQuery('#oferta_filters_dum').css('display', 'none');
}