$(document).ready(function() {

	$("a[rel=galeria]").fancybox({
		'padding'		: 0,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'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();
			});
		}
		});

	$("#various5").fancybox({
		'padding'		: 0,
		'width'			: 640,
		'height'		: 480,
	        'autoScale'     	: false,
	        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'			: 'iframe'
	});

	$("#vimeo").click(function() {
		$.fancybox({
			'padding'	: 0,
			'autoScale'	: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'width'		: 566,
			'height'	: 318,
			'href'		: this.href.replace(new RegExp("([0-9])","i"),'moogaloop.swf?clip_id=$1'),
			'type'		: 'swf'
		});
		return false;
		});

});
