$(document).ready(function()
{
	$("a[rel=foto]").fancybox(
	{
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	500, 
		'speedOut'		:	200, 
		'overlayShow'	:	false,
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) 
		{
			return '<span>' + (currentIndex + 1) + ' van ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
	
	$("a[rel=video]").click(function() {
		$.fancybox({
			'padding'       : 	0,
			'autoScale'     : 	false,
			'transitionIn'	:	'elastic',
			'transitionOut'	:	'elastic',
			'speedIn'		:	500, 
			'speedOut'		:	200, 
			'overlayShow'	:	false,
			'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) 
			{
				return '<span>' + (currentIndex + 1) + ' van ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
			},
			'width'         : 640,
			'height'        : 385,
			'href'          : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'          : 'swf',
			'swf'           : {
				'wmode'             : 'transparent',
   				'allowfullscreen'   : 'true'
			}
		});
	return false;
	});
});
