screenCheck = function() {
	if(screen.width < 1024 && screen.height < 768){
		document.getElementById('page').className = 'smallScreen';
	}
}

window.onload = screenCheck;

