//Fancybox
$(document).ready(function() {
$("a.video").click(function() {
                 $.fancybox({
                  'padding'             : 0,
                  'autoScale'   : false,
                  'transitionIn'        : 'none',
                  'transitionOut'       : 'none',
                  'titleShow'     		: false,
                  'width'               : 640,
                  'height'              : 390,
                  'href'                : this.href = this.href.replace(new RegExp("watch\\?v=", "i"), 'v/') + '&autoplay=1',
                  'type'                : 'swf',    // <--add a comma here
                  'swf'					: {
			   	  'wmode'				: 'transparent',
				  'allowfullscreen'		: 'true'}
                  });
                 return false;

            }); 
});
