$(document).ready(function(){
	var colorboxTranslations = $.parseJSON($('#colorboxTranslations').text());
	
	$('a.colorbox').attr('rel', 'gallery');
	$('a.colorbox').colorbox({
		current: colorboxTranslations.current,
		previous: colorboxTranslations.previous,
		next: colorboxTranslations.next,
		close: colorboxTranslations.close
	});
});
