$(function(){
	$('a[rel^="fancyvideo"]').click(function(){ // просмотр видео с YouTube
		$.fancybox({
			title: this.title,
			transitionIn: 'elastic',
			transitionOut: 'elastic',
			href: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			type: 'swf',
			swf: {'wmode':'transparent','allowfullscreen':'true'}
		});
		return false;
	});
});

