$(window).scroll(function(){
if ($(this).scrollTop() > 80) { //80 размер шапки
$('.header').addClass('fixed');
} else {
$('.header').removeClass('fixed');
}
});
.fixed {
position: fixed;
top: 0;
z-index: 10;
}
$(window).scroll(function(){
if ($(this).scrollTop() > 80) {
if (!($('.header').hasClass('fixed'))) $('.header').addClass('fixed');
} else {
if ($('.header').hasClass('fixed')) $('.header').removeClass('fixed');
}
});