jQuery(document).ready(function() {
setTimeout( function() {
	$("a[rel=gallery]").click(function() {
		$.fancybox({
			'overlayOpacity':	.8,
			'padding':   0,
			'overlayColor'	: "#faf6d3",
			'transitionIn'	: 'elastic',
			'easingIn'		: 'swing',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'href'			: this.href.replace('v/'),
			
		});
		return false;
	});
		}, 700);
	});

