		$(document).ready(function() {
			/*
			*   Examples - images
			*/

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

			$("a[rel=example_group]").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
				    return '<span id="fancybox-title-over">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + '</span>';
				}
			});
	
			$("#iframe").fancybox({
				'width'				: '50.5%',
				'height'			: '56%',
		        'autoScale'     	: false,
				'scrolling'			: 'no',
		        'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe'
			});
			$("#iframe2").fancybox({
				'width'				: '50.5%',
				'height'			: '56%',
		        'autoScale'     	: false,
				'scrolling'			: 'no',
		        'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe'
			});
		});
