jQuery(window).load(function() {
	
	var height = $(window).height() - 22 - 34 - $('table#footer').height() - 10 - 10 - 20 - $('table#content tr:first td:first').height();
	if ($('#cols').height() < height) {
		$('#cols').css('height', height);
	}

});

jQuery(window).resize(function() {

	$('#cols').css('height', 'auto');
	var height = $(window).height() - 22 - 34 - $('table#footer').height() - 10 - 10 - 20 - $('table#content tr:first td:first').height();
	if ($('#cols').height() < height) {
		$('#cols').css('height', height);
	}

});
