// JavaScript Document
$(document).ready(function() {

			$("a[rel=group1]").fancybox({
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic',
				'overlayColor' : '#3A59A8'
				//'titlePosition' 	: 'outside',
				//'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
				//	return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				//}
			});
			
			$("a[rel=group2]").fancybox({
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic',
				'overlayColor' : '#3A59A8'
				//'titlePosition' 	: 'outside',
				//'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
				//	return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				//}
			});
			
			$("[rel=video]").fancybox({
				'width'				: 480,
				'height'			: 325,
				'scrolling'         : 'no',
				//'padding'           : '0',
				'autoScale'			: false,
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic',
				//'overlayOpacity'	: 0.9,
				//'opacity'		: true,
				'overlayColor': '#3A59A8',
				'overlayShow'	: true,
				'type'				: 'iframe'
			});

		});
