window.onload = adoptHeight;

function adoptHeight() {
	if(document.documentElement.clientHeight > 700) {
		w = document.getElementById('wrapper');
		w.style.top='80px'
		document.body.style.backgroundPosition = '0 0'
	}
}
