// JavaScript Document
$(document).ready(function() {
	$("a[rel=fancybox]").fancybox({
		'overlayOpacity'	: '0.3',
		'overlayColor'	: '#6E1687',
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">' + title + '<br/>Click on the right of the image to see the next picture.<br/>Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + '</span>';
		}
	});
	
	/* This is basic - uses default settings */
	
	$("a[rel=fancybox-single_image]").fancybox();
	
	/* Using custom settings */
	
	$("a[rel=fancybox-inline]").fancybox({
		'hideOnContentClick': true
	});
});