$(document).ready(function(){
	var windowWidth = $(window).width();
	var windowHeight = $(window).height();
	resizeFrame();
	$(window).resize(resizeFrame);
});


function resizeFrame(fn){
	var windowWidth = $(window).width();
	var windowHeight = $(window).height();
	var leftMargin = (windowWidth-$('#container').width())/2;
	$('#headerContent').css('left', leftMargin);
	$('#container').css('left', leftMargin);
	$('#billboard').css('left', leftMargin);
	$('#footerContent').css('left', leftMargin);
	/*$('#fullheight').css('height', windowHeight);*/
	
	var contentHeight = ($(window).height() - 400);
	$('#container').css('min-height', contentHeight);

}
