// This creates overlays for non-active pages on the site so that users are unable 
// to click on elements in those pages.
function ClickBlocker() {
    $('.clickBlocker').height($('html').height());

    this.resize = function(){
        $('.clickBlocker').height($('html').height());
        $('.clickBlocker').width(($('html').width() - 940) / 2);
    };
    
    this.resize();
}
