$(function(){
 $('a.cbox').click(function(){
	var $gallery = $('a[rel='+ $(this).attr('rel').replace('img', 'image') +']').colorbox({title: function(){
			return $(this).text();
		}});
	$gallery.eq(0).click();
	return false;
 });
});


