$(document).ready(function() {
	$("a.more").click(function() {
					 $.fancybox({
					  'padding'             : 0,
					  'autoScale'   : false,
					  'transitionIn'        : 'none',
					  'overlayOpacity'      : .8,
					  'overlayColor'        : '#000',
					  'transitionOut'       : 'none',
					  'title'               : this.title,
					  'width'               : 915,
					  'height'              : 600,
					  'href'                : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
					  'type'                : 'swf',    // <--add a comma here
					  'swf'                 : {'allowfullscreen':'true'} // <-- flashvars here
					
					  });
					 return false;

				});
	
	/* This is basic - uses default settings */
	
	$("a.single_image").fancybox();
	
	/* Using custom settings */
	
	$("a#inline").fancybox({
		'hideOnContentClick': true
	});

	/* Apply fancybox to multiple items */
	
	$("a.group").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});
	
});
	
	

