$(function(){
	$('a.colorBox').each(function(){
		$(this).attr('href', 'colorbox/' + $(this).attr('href'));
		$(this).colorbox({ width: "600px",height: "700px", opacity: 0.75, title: '&nbsp;'});
	});
});