jQuery(document).ready(function() {

	$('body').find('table:first').children('tbody').children('tr:first').addClass('top_cell');
	$('body').find('table:first').find('table:first').children('tbody').children('tr:eq(1)').addClass('flash_cell');
	$('body').find('table:first').find('table:first').find('table:first').addClass('content_table');
	$('.content_table').find('table:first').addClass('left_side');
	$('.content_table').find('table:first').children('tbody').children('tr:first').find('table:first').addClass('left_side_1');
	$('.content_table').find('table:first').children('tbody').children('tr:eq(1)').children('td').addClass('left_side_2');
	$('.content_table').find('table:first').children('tbody').children('tr:last').find('table:first').addClass('left_side_3');
	$('.content_table').children('tbody').children('tr:eq(1)').children('td:eq(3)').find('table:first').addClass('right_side');
	$('.content_table').children('tbody').children('tr:eq(1)').children('td:eq(3)').find('table:first').children('tbody').children('tr:eq(0)').find('table:first').addClass('right_side_1');
	$('.content_table').children('tbody').children('tr:eq(1)').children('td:eq(3)').find('table:first').children('tbody').children('tr:eq(1)').children('td').addClass('right_side_2');	
	$('.content_table').children('tbody').children('tr:eq(1)').children('td:eq(3)').find('table:first').children('tbody').children('tr:eq(2)').find('table:first').addClass('right_side_3');	
	$('.left_side > tr, .right_side > tr').each(function() {
		$(this).children('td:even').each(function() {
			$(this).css('height', 'auto');
		});
	});
	$('.left_side').css('height', 'auto');
	$('.right_side').css('height', 'auto');

});

jQuery(window).load(function() {
	
	if ($('.left_side').height() >= $('.right_side').height()) {
		if($('table').is('.right_side_3')) {
			var height = $(window).height() - 49 - 29 - 50 - 353 - 22 - $('.top_cell').height() - $('.left_side_1').height() - $('.left_side_2').height();
		} else {
			var height = $(window).height() - 49 - 29 - 50 - 241 - 22 - $('.top_cell').height() - $('.left_side_1').height() - $('.left_side_2').height();
		}
		if ($('.left_side_3').height() < height) {
			$('.left_side_3').css('height', height);
		}
		$('.right_side').find('table:first').css('height', $('.left_side').height());
	} else {
		if($('table').is('.right_side_3')) {
			var height = $(window).height() - 49 - 29 - 50 - 353 - 22 - $('.top_cell').height() - $('.right_side_1').height() - $('.right_side_2').height();
			if ($('.right_side_3').height() < height) {
				$('.right_side_3').css('height', height);
			}
			$('.left_side_3').css('height', $('.right_side').height() - $('.left_side_1').height() - $('.left_side_2').height());
		} else {
			var height = $(window).height() - 49 - 29 - 50 - 241 - 22 - $('.top_cell').height();
			if ($('.right_side_1').height() < height) {
				$('.right_side_1').css('height', height);
			}
			$('.left_side_3').css('height', $('.right_side_1').height() - $('.left_side_1').height() - $('.left_side_2').height());
		}
		
	}

});
