Sroll and fixed height
$(window).scroll(function(){
if($this.scrollTop() > headerHt ){
$('.top').addClass('shadow-below');
} else if($this.scrollTop() < headerHt){
$('.top').removeClass('shadow-below');
};
});