$(document).ready(function() {
	$("a.group").fancybox({
		'width'		:	600,
		'height'	:	450,
		titleShow : false		
	});
	$("a.banner").fancybox({
		'width'		:	480,
		'height'	:	420,
		titleShow : false
	});	
	$(".show_more").fancybox({
	});	

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

});
