function sticky_relocate() {
    var window_top = $(window).scrollTop() + 300; // the "12" should equal the margin-top value for nav.stick
    var div_top = $('#nav-anchor').offset().top;
        if (window_top > div_top) {
            $('nav').addClass('stick');
        } else {
            $('nav').removeClass('stick');
        }
}