$(document).ready(function() {
	
	$("a#moviepopup").click(function() {
		$.fancybox({
				'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'			: {
				   	 'wmode'		: 'transparent',
					 'allowfullscreen'	: 'true'
				}
			});
	
		return false;
	});
	
	Cufon.replace('h1');
	Cufon.replace('h2');
	Cufon.replace('#menu a');
	Cufon.replace('.biggertext');

});

