jQuery('span.trash a').each(function()
{
	url = jQuery(this).attr('href');
	jQuery(this).click(function()
	{
		var resposta = confirm("Deseja realmente excluir este item?")
		if (resposta)
		{
			window.location = url;
		}
		else
			return false;
	});
});

