$(document).ready(function(){

	$("#dim").css("height", $(document).height());
	$("#dim").fadeIn();
	$(".close").click(function(){
		$("#dim").fadeOut();
		return false;
	});	
});
$(window).bind("resize", function(){
	$("#dim").css("height", $(window).height());
});