$(document).ready(function() {
	$(".video").click(function() {
		$.fancybox({
				'padding'			: 0,
				'overlayColor'		: '#000',
				'overlayOpacity'	: 0.5,
				'transitionIn'		: 'elastic',
				'autoScale'			: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'title'				: this.title,
				'width'				: 680,
				'height'			: 495,
				'href'				: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
				'type'				: 'swf',
				'swf'				: {
				'wmode'				: 'transparent',
				'allowfullscreen'	: 'true'
				}
			});
	
		return false;
	});
	
	$(".merchPic").fancybox({
		'titleShow': false					
	});
	
	$('.help').click(function() {
		$('#merchHelp').show();					  
	});
	$('.help').fancybox({
		'scrolling': 'no',
		'onClosed': function() {
			$("#merchHelp").hide();
		}					
	});
	
});
