$(document).ready(function(){
  $("a[rel='external']").click(function(){
    window.open(this.href);
    return false;
  });
  
  /*$("a[rel='gallery-image']").colorbox({
    rel:'gallery-image', 
    transition:"none", 
    width:"75%", 
    height:"75%"
  });*/
  
  $("a[rel='gallery-image']").fancybox({
    'transitionIn' : 'none',
    'transitionOut' : 'none',
    'titlePosition' : 'over',
    'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
      return '<span id="fancybox-title-over">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + ' ' + title + '</span>';
    }
  });
});
