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


    // --- sticky footer ---
    $(document).ready(function(){
	$(".footer").pinFooter();
    });
    // Fix on resizing
    $(window).resize(function() {
	$(".footer").pinFooter();
    });


});
