$(document).ready(function() {
$("#showwindow").click(function() {
$.fancybox({
    'padding'        	: 0,
   	'autoScale'      	: false,
 	'transitionIn'   	: 'fade',
	'transitionOut'  	: 'fade',
	'width'          	: 480,
  	'height'         	: 370,
	'autoScale'			: false,
	'type'				: 'iframe',
	'scrolling'   		: 'no',
    'href'           	: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
    'allowfullscreen'   : 'true'
    });
return false;
    });
    });
$('#foo').bind('click', function() {
    alert($(this).text());
    });
$('#foo').trigger('click');

