$(document).ready(function() {
	$("a.tube").click(function() {
		 $.fancybox({
		  'padding'             : 0,
		  'autoScale'   		: false,
		  'titleShow'     		: false,
          'transitionIn'  		: 'elastic',
          'transitionOut' 		: 'elastic',
		  'width'               : 400,
		  'height'              : 250,
		  'href'                : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
		  'type'                : 'swf',
		  'swf'                 : {'allowfullscreen':'true', 'wmode':'transparent'} // <-- flashvars here
		  });
		 return false;
	}); 
});
