If anchor tag has image, fancybox
also, load alt tag as the title, replacing hypens with a space
JavaScript
jQuery(".entry a:has(img)").fancybox({
padding: 0,
title: 'outside',
beforeLoad : function() {
this.title = jQuery(this.element).find('img').attr('alt').replace(/-/g, ' ');
}
});