function getPageHeight(){
	var body = document.body,
		html = document.documentElement;

	var height = Math.max( body.scrollHeight, body.offsetHeight, 
		html.clientHeight, html.scrollHeight, html.offsetHeight );

	var underlay = document.getElementById('background'); 
	
	underlay.style.height = height + 'px'
}
