// minimum height
var MIN_WIDTH = 1100;
var MIN_HEIGHT = 850;

var SOCIAL_WIDTH = 440;



function resize() {
	
	if( typeof( window.innerWidth ) == 'number' ) {
		stageWidth = window.innerWidth;
	} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
		//IE 6+ in 'standards compliant mode'
		stageWidth = document.documentElement.clientWidth;
	}

	if (stageWidth < MIN_WIDTH)
		stageWidth = MIN_WIDTH;
	
//	document.getElementById("social").style.left = (stageWidth - SOCIAL_WIDTH)*0.5 + "px";
	//document.getElementById("social").style.display = "block";
	
	return true;	// scroll back up to top
}

window.onresize = resize;
