// beetje lame, maar heb style nodig voor een ubb-gegenereerde tabel...
$(function(){
	$('table.special tr:not(:first)').each(function(){
		$("td:last",$(this)).addClass('lastcell');
		$("td:not(:first)",$(this)).addClass('right');
	});
});

