$(document).ready(function() {
			$("a[rel=popup]").fancybox({
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'titlePosition' 	: 'over',
				'speedIn'			:  500,
				'speedOut'			:  500,
				'cyclic'			: true,	
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Gallery ' + (currentIndex + 1) + ' of ' + currentArray.length + (title.length ? ': &nbsp; ' + title : '') + '</span>';
				}
			});
		});


