$(function() {
  $(window).scroll(function () {
    var fixel = $('#fixel').offset();
    var mainmenu = $('#mainmenu').offset();
    if(fixel.top>169){
      $('#mainmenu').css('top',fixel.top-30);
    }
    if(fixel.top<199){
      $('#mainmenu').css('top','169px');
    }
  });

/*
  
  $(window).resize(function () {
    auth_and_expert();
  });
    
    function auth_and_expert() {
      $('#expert').height($('#author').height());
    }
  
    auth_and_expert();
*/  
  
  
  $(window).resize(function () {
    top_banners();
  });
  
  function top_banners() {
   var bproj = $('#bproject').offset();
   var bpart = $('#bpartners').offset();
    $('#top-banner1').css('left', bproj.left-65);
    $('#top-banner2').css('left', bpart.left-25);
   }
  
  top_banners();
  
});