$(document).ready(function() {
	
	$("label.required").each(function() {
		$(this).append("<span style=\"color:red\"> *</span>");
	});
	
	$("table.tabelaDados").each(function () {
		$(this).attr('cellspacing', '0');
	});
	
});
