



/*
 * Fancybox
 * */
$(document).ready(function() {

	$("a[rel=sidebar-pictures]").fancybox({
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',

		'titlePosition' 	: 'outside',

		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});


	$("a#pictures, a#movie").fancybox({
		'width'				: '75%',
		'height'			: '98%',
	    'autoScale'     	: false,
	    'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});

	$("a#availability").fancybox({
		'width'				: '75%',
		'height'			: '100%',
	    'autoScale'     	: false,
	    'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});

});

