$(document).ready(function() {
		
		/* youtube video */
		$(".pop_up_video").fancybox({
			'width'				: 655,
			'height'			: 530,
			'titleShow'			: false,
			'overlayColor'		: '000000',
			'transitionOut'		: 'fade',
			'transitionIn'		: 'fade',
			'type'				: 'iframe'

		});


		/* pop up site */
		$(".pop_up_iframe").fancybox({
			'width'				: 550,
			'height'			: 450,
			'titleShow'			: false,
			'overlayColor'		: '000000',
			'transitionOut'		: 'fade',
			'transitionIn'		: 'fade',
			'type'				: 'iframe'

		});
		
		/* image */
		$("a.pop_up_image").fancybox({
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
		});

		/* gallery*/
		$("a[rel=gallery]").fancybox({
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'titlePosition' 	: 'over',
			'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
				return '<span id="fancybox-title-over">' +  (currentIndex + 1) + ' / ' + currentArray.length + ' ' + title + '</span>';
			}
		});


});
