$(document).ready( function() { 
	
	$('TABLE,TR,TH,TD').removeAttr('class');
	
	$('TABLE').attr("cellpadding", "0");
	$('TABLE').attr("cellspacing", "0");
	$('TABLE').attr('border', '0');
	$('TABLE').attr('width', '100%');	
	
	// Apply table styling classes on the client
	$('TABLE TR TH:first-child').addClass('first');
	$('TABLE TR TD:last-child').addClass('last');
	

	
});