I am wondering a little when I look at this code:
//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();
What is the difference between $(document).height(); and $(window).height();?