$(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;
	$('#container').css('left', leftMargin);
	$('#fullheight').css('height', windowHeight);
}
