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

		$("a#example1").fancybox();

		$("a.example2").fancybox({
			'overlayShow'	: false,
			'transitionIn'	: 'elastic',
			'transitionOut'	: 'elastic'
		});

		$("a.example3").fancybox({
			'transitionIn'	: 'none',
			'transitionOut'	: 'none'	
		});
		
		$("a.brksfncybx").fancybox({
			'transitionIn'	: 'fade',
			'overlayColor'	: '#20202f',
			'overlayOpacity' : 0.85	
		});

		$("a.brksgrpfncybx").fancybox({
			'transitionIn'	: 'fade',
			'overlayColor'	: '#20202f',
			'overlayOpacity' : 0.85	,
			'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
				 return '<tbody><tr><td id="fancybox-title-float-left"></td><td id="fancybox-title-float-main"> ' + (title.length ? ' &nbsp; ' + title : '') + ' &nbsp;&nbsp;&nbsp; ' + '<span class="brkarynums">' + (currentIndex + 1) + ' / ' + currentArray.length + '</span>' + '</td><td id="fancybox-title-float-right"></td></tr></tbody>';
			}
		});

		$("a.example4").fancybox({
			'opacity'		: true,
			'overlayShow'	: false,
			'transitionIn'	: 'elastic',
			'transitionOut'	: 'none'
		});

		$("a.example5").fancybox({
			'overlayOpacity'	: 0.9
		});

		$("a.example6").fancybox({
			'titlePosition'		: 'outside',
			'overlayColor'		: '#000',
			'overlayOpacity'	: 0.9
		});

		$("a.example7").fancybox({
			'titlePosition'	: 'inside'
		});

		$("a.example8").fancybox({
			'titlePosition'	: 'over'
		});

		$("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 + (title.length ? ' &nbsp; ' + title : '') + '</span>';
			}
		});

		/*
		*   Examples - various
		*/

		$("#various1").fancybox({
			'titlePosition'		: 'inside',
			'transitionIn'		: 'none',
			'transitionOut'		: 'none'
		});

		$("#various2").fancybox();

		$("#various3").fancybox({
			'width'				: '75%',
			'height'			: '75%',
			'autoScale'			: false,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'type'				: 'iframe'
		});

		$("#brksinlinehtml_contact").fancybox({
			'width'				: '80%',
			'height'			: '80%',
			'autoScale'			: false,
			'transitionIn'		: 'fade',
			'transitionOut'		: 'fade',
			'overlayColor'	: '#20202f',
			'overlayOpacity' : 0.85	,
			'type'				: 'iframe'
		});

		$("#brksinlinehtml").fancybox({
			'width'				: '80%',
			'height'			: '60%',
			'autoScale'			: false,
			'transitionIn'		: 'fade',
			'transitionOut'		: 'fade',
			'overlayColor'	: '#20202f',
			'overlayOpacity' : 0.85	,
			'type'				: 'iframe'
		});

		$("a.brksvideo").fancybox({
			'transitionIn'      : 'fade',
			'overlayColor'      : '#20202f',
			'overlayOpacity'    : 0.85,
			'type'              : 'iframe'
		});
		
        $("#various4").fancybox({
            'padding'           : 0,
            'autoScale'         : false,
            'transitionIn'      : 'none',
            'transitionOut'     : 'none'
        });
	});
