$(document).ready(function() {
	$("a.group").fancybox({
		'hideOnContentClick': false,
		'frameWidth'		:	560,
		'frameHeight'		:	460		
	});
	$("a.banner").fancybox({
		'hideOnContentClick': false,
		'frameWidth'		:	480,
		'frameHeight'		:	420		
	});	
	$("a[rel=video_group]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'frameWidth'		:	425,
		'frameHeight'		:	354	
	});	

	$("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>';
		}
	});

});