// Lightbox effect for side images
$(document).ready(function() {
	if (document.getElementById('gallery')) {
		$("div#gallery a").fancybox({
			'overlayOpacity'	: '0.6',
			'overlayColor'		: '#333333',
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'titlePosition' 	: 'outside',
			'titleFormat'			: function(title, currentArray, currentIndex, currentOpts) {
				return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
			}
		});
	} else {
		$("div.aside a").fancybox({
			'overlayOpacity'	: '0.6',
			'overlayColor'		: '#333333',
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'titlePosition' 	: 'outside',
			'titleFormat'			: function(title, currentArray, currentIndex, currentOpts) {
				return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
			}
		});
	}
});
