$(function (){ 
 $("a[rel='gallery']").fancybox({
      'transitionIn'    : 'elastic',
          'transitionOut'    : 'elastic',
          'easingIn'      : 'easeOutBack',
          'easingOut'     : 'easeInBack',
      'overlayColor'  : '#fff',
          'titlePosition'     : 'over',
          'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
              if (currentArray.length > 1) return '<span id="fancybox-title-over">' +  (currentIndex + 1) + ' / ' + currentArray.length + ' ' + title + '</span>';
          //else currentOpts.showNavArrows = false;
          }
      });
  if ($.browser.msie && $.browser.version == 9) $("#header .top-menu ul li a").css({paddingLeft: "11px", paddingRight: "11px"});
$(".project-full .more a").click(function(){
  $(this).closest(".image-inner").find(" > a").click();
  return false;
});
});
