$(document).ready(function() {
    
    	$(".youtube").click(function() {
    		$.fancybox({
    			'padding'		: 0,
    			'autoScale'		: false,
    			'transitionIn'	: 'none',
    			'transitionOut'	: 'none',
    			'title'			: this.title,
    			'width'		: 700,
    			'height'		: 495,
    			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
    			'type'			: 'swf'
    		});
    	
    		return false;
    	});
    	
    	$("#comments_wrapper").hide();
    	
    	$("#comments-show").fancybox({
    		'scrolling' : 'yes',
    		'titleShow' : false,
    		'overlayColor' : '#000',
    		'overlayOpacity' : '0.5',
    		'autoDimensions' : false,
    		'width' : 600,
    		'onClosed' : function() {
    			
    		}
    	});
});
