Получение значений ширины и высоты по умолчанию.
//Get the screen height and width
var maskHeight = $(window).height();
var maskWidth = $(window).width();
$(window).resize(function(){
maskHeight = $(window).height();
maskWidth = $(window).width();
});
Установка маски в качестве сохраненной ширины и высоты документа
//Set height and width to mask to fill up the whole screen
$('#mask').css({'width':maskWidth,'height':maskHeight});
$('#mask').css('display','block');