$(document).ready(function() {
	var height = $(window).height()-87;		  
	$("#page-scroller").css("height",height+"px");					   
						   
	var height = $(document).height();	
	var width = $(document).width();	
	$("#page-blocker").css("height",height+"px"); 
	$("#page-blocker").css("width",width+"px"); 
	
	var height = $("#content-wrapper").height() - $("#page-scroller").height();
	$("#content-wrapper").css("height",height+"px");
});

window.onresize = function() {
	var height = $(window).height()-87;
	$("#page-scroller").css("height",height+"px");
	
	$("#page-blocker").css("height","1px"); 
	$("#page-blocker").css("width","1px"); 
	
	var height = $(document).height();	
	var width = $(document).width();	
	$("#page-blocker").css("height",height+"px"); 
	$("#page-blocker").css("width",width+"px"); 
	
	var height = $("#content-wrapper").height() - $("#page-scroller").height();
	$("#content-wrapper").css("height",height+"px");
};
