
$(function() {
	$('body').addClass('fx');

	var height = $(document).height();
	$('#wrapper').height(height);
	
	$('tr').each(function() {
		$(this).find('td:last').addClass('last-child');
	});
	
		
});