function resizeTable() {
	$$('.tab_special').each(function (table) {
		table.style.width = "";
	});
	$$('.tab_roller').each(function (table) {
		table.style.width = "";
	});
}

Event.observe(window, 'load', resizeTable);
