$(document).ready(function() {
	/* picture gallery */
	$("a[rel=images]").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Imagen ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});
			
	/* youtube video gallery */
	$("a[rel=videos]").fancybox({
				'titleShow'     : false,
				'transitionIn'  : 'elastic',
				'transitionOut' : 'elastic',
				'href' : this.href,
				'type'      : 'swf',
				'swf'       : {'wmode':'transparent','allowfullscreen':'true'}
			});
});

