/home/arranoyd/public_html/wp-content/themes/jevelin/js/theme-options.js
jQuery( document ).ready(function( $ ) {

    if ( $.cookie( "sh-theme-options" ) ) {
        console.log( $.cookie( "sh-theme-options" ) );
        $(".nav-tab[href='"+ $.cookie( "sh-theme-options" ) +"']")[0].click();
        setTimeout(function() {
            window.scrollTo(0, 0);
        }, 1);
    }

    $(".nav-tab.fw-wp-link").on( "click", function() {
        $.cookie( "sh-theme-options", $(this).attr("href") );
    });

});