$(document).ready(function(){
	$('div.aviso').each(function () {
		var encabezado = $(this).find('p.encabezado');
		if (encabezado.html() == 'MOD:') {
			$(this).find('p.pie span').remove();
			encabezado.remove();
		} else
			$(this).find('p.pie span').load('userping', 'fmt=mp&u='+encabezado.html().slice(0,-1));
		if ($(this).hasClass('anuncio'))
			$(this).find('p.pie').remove();
	});
});