$(document).ready(function() {
	$("a.fancybox").fancybox();
	$("a.fancybox-youtube").each(function(){
		$(this).fancybox({
			'padding'		: 0,
//			'autoScale'		: false,
			'width'		: 680,
			'height'		: 495,
			'transitionIn'	: 'elastic',
			'transitionOut'	: 'elastic',
			'title'			: this.title,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
				'wmode'				: 'transparent',
				'allowfullscreen'	: 'true'
			}
		});
	});
});

