$(document).ready(function() {
	$("table.data tr:even").each(function() {
		$(this).attr('class', 'modulo');
	});
	$("table.data tr").find('td:first').each(function() {
		$(this).attr('class', 'first');
	});
	$("table.data tr").find('td:last').each(function() {
		$(this).attr('class', 'last');
	});
	$("table.data").each(function() {
		$(this).find("tr:last").attr('class', 'lastBottom');
	});
	$("input[type=button]").each(function() {
		$(this).attr('style', 'cursor:pointer');
	});
	$("input[type=submit]").each(function() {
		$(this).attr('style', 'cursor:pointer');
	});
});