$(document).ready(function()
{
	$("a.video[href^='http://www.youtube.com/']").each(function()
	{
		$(this).fancybox({
			transitionIn: 'elastic',
			transitionOut: 'elastic',
			padding: 0,
			overlayColor: '#000000',
			overlayOpacity: 0.9,
			titleShow: false,
			href: this.href.replace(/watch\?v=/i, 'v/'),
			type: 'swf',
			swf: {'wmode':'transparent','allowfullscreen':'true'}
	     });
	});
});
