$(function() {
	$('#tabContainer > ul').tabs({ fx: { opacity: 'toggle' } });
});

$(window).resize(function(){
	$('div.scrollBlock').each(
		function()
		{
			$(this).width($('body').width() - $('table.scrollTHead').width() - 70);
		}
	);
});

