//<![CDATA[

$(document).ready(function()
{
	Nifty("#nube-etiquetas", "normal");
	$("a[onclick]:has(img)").each(function()
	{
		 $(this).attr("href", $("img", $(this)).attr("src"));
		 $(this).removeAttr("onclick");
	});
	$("img[src*=antiguas]").each(function()
	{
		$(this).css("height", "80px");
		$(this).parent("a").attr("rel", "galeria").fancybox();
	});
	$("#textos table").css("margin", "0 auto");
	$("#textos table table").css("margin", "0");
	$("#textos table table td").css("border", "none");
	$("center").each(function()
	{
		$(this).replaceWith($(this).html());
	});
	$("p:empty").remove();
});

//]]>