// JavaScript Document

window.onresize = formatPage;

function formatPage() {
	
	// GET VIEWPORT HEIGHT AND RESIZE HOME PHOTO TO FIT VIEWPORT
	var windowHeight;
	var photoHeight;
	
		// newer browsers (mozilla/netscape/opera/IE7) use window.innerWidth and window.innerHeight
		if (typeof window.innerHeight != 'undefined') {
		  windowHeight = window.innerHeight;
		  windowWidth = window.innerWidth;
		}
		 
		// IE6 in standards compliant mode (i.e. with a valid doctype as the first line in the document)
		else if (typeof window.innerHeight == 'undefined') {
		   windowHeight = document.documentElement.clientHeight;
		   windowWidth = document.documentElement.clientWidth;
		}

	// SET WRAPPER HEIGHT & WIDTH
	var wrapperHeight = (windowHeight - 50) + 'px';
	//document.getElementById('wrapper').style.height = wrapperHeight;
	document.getElementById('footer').style.top = wrapperHeight;
	document.getElementById('footer').style.visibility = 'visible';
	
	return;
	
}
