jQuery.extend(
	jQuery.colorbox.settings,
	{
		'transition': 'elastic',
		'previous': 'anterior',
		'next': 'siguiente',
		'close': 'cerrar [x]'
	}
);

jQuery(document).ready(function(){
	jQuery('a[rel=lightbox]').click(function(){
		jQuery(this).colorbox();
	});
});

