jQuery(document).ready(function() {
	
	$('.main_content_box > table').addClass('main_content');

});

jQuery(window).load(function() {
	
	if($('.main_content').height() <= $('.sidebar').height()) {
		$('.main_content').css('height', $('.sidebar').height());
	}
	var height = $(window).height() - 12 - 3 - 25 - 36 - 315 - 10 - 47 - 9 - 10;
	if ($('.main_content').height() < height) {
		$('.main_content').css('height', height);
	}

});

jQuery(window).resize(function() {

	$('.main_content').css('height', 'auto');
	if($('.main_content').height() <= $('.sidebar').height()) {
		$('.main_content').css('height', $('.sidebar').height());
	}
	var height = $(window).height() - 12 - 3 - 25 - 36 - 315 - 10 - 47 - 9 - 10;
	if ($('.main_content').height() < height) {
		$('.main_content').css('height', height);
	}

});
