// JavaScript Document
	window.onload = setScreenClass; 
	window.onresize = setScreenClass;

	function setScreenClass(){
document.getElementById("all-h").style.height = (document.body.clientHeight)+"px";
document.getElementById("all-in-h").style.height = (document.body.clientHeight)+"px";
document.getElementById("wrap-h").style.height = (document.body.clientHeight)+"px";
	};

