$(document).ready(function(){
	$(".videolink").click(function() {
		$.fancybox({
				'padding'			: 0,
				'autoScale'			: false,
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'overlayOpacity'	: 0.7,
				'overlayColor'		: '#000000',
				'centerOnScroll'	: true,
				'width'				: 480,
				'height'			: 385,
				'href'				: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
				'type'				: 'swf',
				'swf'				: {
				'wmode'				: 'transparent',
				'allowfullscreen'	: 'true'
				}
			});
		return false;
	});
});
