jQuery( document ).ready( function() {
	var winSize = document.body.clientWidth;
	if (winSize < 1000) {
	document.getElementById("wrapper").style.width = "1002px";
	} else {
	document.getElementById("wrapper").style.width = "100%";
	}
	var winHeight = document.body.clientHeight;
	if (winHeight < 800) {
	document.getElementById("wrapper").style.height = "800px";
	} else {
	document.getElementById("wrapper").style.height = "100%";
	}
});
