$(document).ready(function() {

	$('a[rel=external], a[rel=window], a[rel=document]').attr('target', '_blank');

	$('a.thickbox').colorbox({
		maxWidth: '95%',
		maxHeight: '95%'
	});

	// antispam
	$("a[href*='(ELIMINAR)']").each(function(i) {
		omg = $(this).attr('href');
		omg2 = $(this).text();
		$(this).attr('href', omg.split('(ELIMINAR)').join(''));
		$(this).text(omg2.split('(ELIMINAR)').join(''));
	});

});
