jQuery(document).ready(function() {
setTimeout( function() {
	$(".video-tnail").click(function() {
		$.fancybox({
			'overlayOpacity':	.6,
			'overlayColor'	: "#faf6d3",
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'elastic',
			'easingIn'		: 'swing',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'			: 640,
			'height'		: 385,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'type'			: 'iframe'
			
		});

		return false;
	});
		}, 300);
	});



