(function($){
	$(document).ready(function(){
		// Mostrar/Ocultar comentarios
	    /*$("#comments_content").hide();
	    $("div.meta a.comment, a.volver").bind("click", function(){
	        $("#content .post").toggle();
	        $("#comments_content").toggle();
	    });*/
		// Mostrar/Ocultar enlaces
		jQuery("ul.xoxo").hide();
		jQuery("#links table td").bind("click", function(){
		    jQuery("ul.xoxo", $(this)).toggle("slow");
		});
	});

})(jQuery)