function $(id){
	return document.getElementById(id)
}
function changeHeight(){
	height = $('main').offsetHeight + 460;
	$('wraper-out').style.height = height + 'px';
	$('wraper-in').style.height = height + 'px';
}
function l()
{
	changeHeight();
	
}

window.onload = l;
