// Quitar titles de WP
	$(document).ready(function() {
		$('.cat-item a').each(function() {
		$(this).removeAttr('title');
		});
	});
