(function($){
$('.entry').each(function(i){
var _i = i;
$(this).find('img').each(function(){
var alt = $(this).attr('alt');
if (alt == '' || typeof alt == 'undefined'){
$(this).wrap('');
} else {
$(this).after(''+alt+'').wrap('');
}
});
});
$('.fancybox').fancybox();
})(jQuery);