// all-pages.js: javascript that should be executed on every page of the site
$(document).ready(function() {

    /// --- EXTERNAL LINKS ---
    /// automatically open all external links in a new window
    $('a:not([href=""])').each(function() {
        if (this.hostname !== location.hostname) {
            $(this).addClass('externalLink').attr('target', "_blank");
        }
    });
    /// --- END EXTERNAL LINKS
    
    // --- sticky footer ---
    $(document).ready(function(){
        $(".footer").pinFooter();
    });
    // Fix on resizing
    $(window).resize(function() {
        $(".footer").pinFooter();
    });


});

