$(document).ready(function() {
    $('#content div.body a:has(img):not(#projects a)').colorbox({
        maxWidth: '90%',
        maxHeight: '90%',
        opacity: 0.60,
        title: function() {
            return $(this).find('img:first').attr('alt');
        }
    });
});

