// JavaScript For Kansas 23
        $(document).ready(function () {
			sizeFrame();
            $(window).resize(sizeFrame);
        });

		function sizeFrame() {
			var ct = $('#content');
			var hMax = $(window).height() + $(window).scrollTop();
			var th = ct.height()
			var offset = (hMax - th)/2 -10;
			if (offset < 0) { offset = 0; }
			ct.css({"margin-top":offset});
			var wMax = $(window).width();
			var tw = ct.width();
			offset = (wMax - tw)/2;
			ct.css({"left":offset});
		}

