$(document).ready(function() { 
		$("#youtube").click(function() { 
		$.fancybox({ 
		'padding'       : 0, 
		'autoScale'     : false, 
		'transitionIn'  : 'elastic', 
		'transitionOut' : 'elastic', 
		'title'         : this.title, 
		'width'         : 640, 
		'height'        : 385, 
		'href'          : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'), 
		'type'          : 'swf', 
		'swf'           : { 
			'wmode'        		: 'transparent', 
			'allowfullscreen' 	: 'true' 
							} 
			}); 
		return false; 
		}); 
	}); 
