jQuery(window).load(function() {
	
	var height = $(window).height() - $('.flash_cell').height() - 25 - $('#footer').height() - 33;
	if ($('#bkgd').height() < $(window).height()) {
		$('#left_nav > tbody > tr > td:eq(1)').css('height', height);
	}

});

jQuery(window).resize(function() {
	
	$('#left_nav > tbody > tr > td:eq(1)').css('height', 'auto')
	var height = $(window).height() - $('.flash_cell').height() - 25 - $('#footer').height() - 33;
	if ($('#bkgd').height() < $(window).height()) {
		$('#left_nav > tbody > tr > td:eq(1)').css('height', height);
	}
	
});
