jQuery(document).ready(function () {
    jQuery('.circle1').click(function() {
        jQuery(".group1").colorbox({open:true, rel:'group1', slideshow:true, title: 
            function(){
                var url = $(this).text();
                return '<div >' + url + '</div>';
            }
        });
        return false;
    });
});

