$(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);*/
	
	var contentHeight = ($(window).height() - 327);
	$('#content').css('min-height', contentHeight);
	$('#rightTab').css('min-height', contentHeight);

}
