// JavaScript Document

		$(document).ready(function() {


			$("a.example2").fancybox({
				'overlayShow'	: true,
				'overlayColor'		: '#000',
				'overlayOpacity'	: 0.5,
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'elastic',
				'titlePosition' 	: 'inside',
				'titleShow' 	: false
			});


			$("a[rel=example_group]").fancybox({
				'overlayShow'	: true,
				'overlayColor'		: '#000',
				'overlayOpacity'	: 0.5,
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'elastic',
				'titlePosition' 	: 'inside',
				'titleShow' 	: false,
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});

			$(".various3").fancybox({
				'width'				: 481,
				'height'			: 470,
				'overlayShow'	: true,
				'overlayColor'		: '#000',
				'overlayOpacity'	: 0.5,
				'scrolling'         : 'no',
				'autoScale'			: false,
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic',
				'titleShow' 	: false,
				'type'				: 'iframe'
			});

			$(".various4").fancybox({
				'width'				: 544,
				'height'			: 575,
				'overlayShow'	: true,
				'overlayColor'		: '#000',
				'overlayOpacity'	: 0.5,
				'scrolling'         : 'no',
				'autoScale'			: false,
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic',
				'titleShow' 	: false,
				'type'				: 'iframe'
			});

			$(".various6").fancybox({
				'width'				: 481,
				'height'			: 470,
				'overlayShow'	: true,
				'overlayColor'		: '#000',
				'overlayOpacity'	: 0.5,
				'scrolling'         : 'no',
				'autoScale'			: false,
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic',
				'titleShow' 	: false,
				'type'				: 'iframe'
			});

		});

