Мне немного интересно, когда я смотрю на этот код:
// Get the screen height and width
var maskHeight = $(document).height();
var maskWidth = $(window).width();
...
// Get the window height and width
var winH = $(window).height();
var winW = $(window).width();
В чем разница между $(document).height();
и $(window).height();
?