// smooth scrolling header section $(window).scroll(function () { if ($(this).scrollTop() > 10 && !$('#hiddenHeader').hasClass('open')) { $('#hiddenHeader').addClass('open'); $('#hiddenHeader').slideDown(); } else if ($(this).scrollTop() <= 10) { $('#hiddenHeader').removeClass('open'); $('#hiddenHeader').slideUp(); } });