$(window).scroll(function () {
var s = $(window).scrollTop();
if (s > 10) {
$('.header__navbar').stop( true, true ).animate({
height: "180px"
},{duration: 100, queue: false});
} else if (s <= 10) {
$('.header__navbar').stop( true, true ).animate({
height: '130px'
},{duration: 10, queue: false});
}
});