$var = jQuery.noConflict();
$var(document).ready(function($) { 
	$var(".video").click(function() {
		$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'title'			: this.title,
			'width'			: 640,
			'height'		: 385,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			'wmode'				: 'transparent',
			'allowfullscreen'	: 'true',
			'transitionIn': 'elastic',
		  'transitionOut': 'elastic',
		  'titleShow': true,
		  'titlePosition': 'over',
		  'zoomOpacity': true,
		'zoomSpeedIn': 300, 
		'zoomSpeedOut':	500 
			}
		});

		return false;
	});



});

