$(window).scroll(function() {
var top = $(document).scrollTop();
if (top < 300) $(".top_nav").removeClass('fixed');
else $(".top_nav").addClass('fixed');
});
.fixed{
position: fixed;
//дополнительные стили
}
$(window).scroll(function() {
var top = $(document).scrollTop();
if (top < 300) $(".top_nav").css({top: '0', position: 'relative'});
else $(".top_nav").css({top: '64px', position: 'fixed'});
});