$(function() {
	var onResize = function() {
		$('#menuWrap, #contentWrap').css({ minHeight: 0 });
		var h = Math.max(Math.max($('#menuWrap').height(),$('#contentWrap').height()),$(window).height() - 126);
		$('#menuWrap').css({ minHeight: h });
		$('#contentWrap').css({ minHeight: h + 16});
	};
	$(window).bind('resize',onResize);
	onResize();
});

