// Thanks to the folks at http://fancybox.net/ for this script

$(document).ready(function() {
			
	$("a[rel=fancy-lounge],a[rel=fancy-functionroom],a[rel=fancy-nightclub],a[rel=fancy-unipub]").fancybox({
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'titlePosition' 	: 'over',
		'width'				: '800',
		'height'			: '600',				
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				},
		'onComplete'		: function() {
								$("#fancybox-wrap").hover(function() {
									$("#fancybox-title").show();
								}, function() {
									$("#fancybox-title").hide();
								   })
							  },
	});		
});
