 $(document).ready(function() {
      /*
       *   画像を表示
       */

      $("a[rel=images_group]").fancybox({
        'titlePosition'   : 'over',
        'titleFormat'     : function(title, currentArray, currentIndex, currentOpts) {
          return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
        }
      });

      /*
       *   画像以外を表示
       */

      $("#various1").fancybox({
        'titlePosition'    : 'inside',
        'transitionIn'     : 'none',
        'transitionOut'    : 'none'
      });

      $("#various2").fancybox({
        'width'          : '85%',
        'height'         : '70%',
        'autoScale'      : false,
        'transitionIn'   : 'none',
        'transitionOut'  : 'none',
        'type'           : 'iframe'
      });

      $("#various3").fancybox({
        'width'          : '85%',
        'height'         : '70%',
        'autoScale'      : false,
        'transitionIn'   : 'none',
        'transitionOut'  : 'none',
        'type'           : 'iframe'
      });
	  
	  $("#various4").fancybox({
        'padding'        : 0,
        'autoScale'      : false,
        'transitionIn'   : 'none',
        'transitionOut'  : 'none'
      });
    });
