window.onload = setScroll;

function setScroll(){
	//if (screen.width <= 800) {
	if (window.document.body.clientWidth <= 800) {	
	//document.getElementById('screen').style.overflow='auto';
	document.getElementsByTagName('html')[0].style.overflow='auto';
	}
}


