$(document).ready(function() {
	
	
	
	$("a[href^=/assets]").append('<span></span>');
	
	$("a[href^=/assets]").fancybox({
			'transitionIn': 'elastic',
			'transitionOut': 'elastic',
			'speedIn': 1000, 
			'speedOut': 200 
			//'overlayShow': false
	});
	
	$('a[title^=Gallery]').attr('rel', 'gallery');
	
	$("a[rel=gallery]").fancybox({
			'transitionIn': 'none',
			'transitionOut': 'none',
			'titlePosition': 'over',
			'overlayOpacity': '.8',
			'overlayColor': '#000',
			'titleFormat': function(title, currentArray, currentIndex, currentOpts) {
			    return '<span id="fancybox-title-over">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + ' &mdash; ' + title + '</span>';
			}
	});
	
	$(".video").fancybox({
			'width'				: 680,
			'height'			: 416,
			'autoScale' 		: false,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'type'				: 'iframe'
	});
	
	$("a[href^=/video/]").fancybox({
			'width'				: 680,
			'height'			: 416,
			'autoScale' 		: false,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'type'				: 'iframe'
	});

});