var FANCYBOX_OPTIONS = {
  'titlePosition' 	: 'over',
  'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
    return '<span id="fancybox-title-over">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + '</span>';
  }
};

$(function() {

  $("a.fancybox").fancybox({titleShow:false});

  $("a.photos_slideshow").fancybox(FANCYBOX_OPTIONS);

  $(".post .body a").attr('target', '_blank');
});
