$(document).ready(function(){

	// colorbox
	$('.thickbox').colorbox({
		maxWidth: '95%',
		maxHeight: '95%'
	})

	// external
	$("a[rel=external]").attr('target', '_blank');
	$("a[href $= '.pdf']").attr('target', '_blank');
	$("a[rel=external]").addClass("external");

	$("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(''));
	});

});
