// JavaScript Document

		function setHeight()
		{
		    if (screen.height > 1000){
			    document.getElementById('wrapper').style.margin = "90px auto 0 auto";
			   
			}
			else{
			    document.getElementById('wrapper').style.margin = "35px auto 0 auto";
		       
		    }
		}

