$(window).bind('beforeprint',function(){

	if($.browser.msie)
	{

		$('table').attr('cellspacing','');
		$('table').attr('cellpadding','');
		$('table').each(function(){
			$(this).height($(this).height()/2);
		})

//		var sidebar = $('#sidebar').height();
//		var components = $('#components').height();
//		if(components>sidebar)
//			$('#sidebar').height(components)

	}

});

var resize = true;

$(function(){
	if(resize)
		resize_columns();
})

function resize_columns()
{
		var sidebar = $('#sidebar').height();
		var components = $('#components').height();
		if(components>sidebar)
			$('#sidebar').height(components)
		else
			$('#components').height(sidebar)
}
