$(function(){
	if ($("a.fancyvideo").length) {
		$("a.fancyvideo").click(function() {
			$.fancybox({
				'padding'       : 0,
				'autoScale'		: false,
				'transitionIn'  : 'none',
				'transitionOut' : 'none',
				'title'         : this.title,
				'width'         : 680,
				'height'        : 495,
				'href'          : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
				'type'          : 'swf',
				'swf'           : {'allowfullscreen':'true', 'wmode':'transparent'}
			});
			return false;
		});
	}
});
